Project

General

Profile

Download (1.48 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.vaadin.ui;
10

    
11

    
12
import java.util.logging.Logger;
13

    
14
import com.vaadin.annotations.Theme;
15
import com.vaadin.annotations.Widgetset;
16
import com.vaadin.navigator.Navigator;
17
import com.vaadin.server.VaadinRequest;
18
import com.vaadin.spring.annotation.SpringUI;
19
import com.vaadin.ui.UI;
20

    
21
import eu.etaxonomy.cdm.vaadin.component.taxon.StatusComposite;
22

    
23
/**
24
 * @author cmathew
25
 * @since 11 Mar 2015
26
 *
27
 */
28
@Theme("edit")
29
@SpringUI(path=StatusEditorUI.NAME)
30
@Widgetset("eu.etaxonomy.cdm.vaadin.AppWidgetSet")
31
public class StatusEditorUI extends AbstractAuthenticatedUI {
32

    
33
    Navigator navigator;
34

    
35
    public static final String NAME = "status";
36

    
37
    private static final String FIRST_VIEW = "editstatus";
38

    
39
    private final static Logger logger =
40
            Logger.getLogger(StatusEditorUI.class.getName());
41

    
42
    @Override
43
    protected void doInit(VaadinRequest request) {
44
        // FIXME: remove this when testing is done
45
        //setIgnoreAuthentication(true);
46

    
47
        getPage().setTitle("Status Editor");
48
        StatusComposite statusEditor = new StatusComposite();
49
        UI.getCurrent().getNavigator().addView(FIRST_VIEW, statusEditor);
50

    
51
    }
52

    
53
    @Override
54
    public String getFirstViewName() {
55
        return FIRST_VIEW;
56
    }
57

    
58
}
(10-10/12)