Project

General

Profile

Download (1.75 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 org.apache.log4j.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.view.ConceptRelationshipView;
22

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

    
33
    Navigator navigator;
34

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

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

    
39
    private final static Logger logger = Logger.getLogger(ConceptRelationshipUI.class);
40

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

    
46
        getPage().setTitle("Concept Relationship Editor");
47
        logger.warn("original classification : " + request.getParameter("oc"));
48
        logger.warn("copy classification : " + request.getParameter("cc"));
49
        String oc = request.getParameter("oc");
50
        String cc = request.getParameter("cc");
51

    
52
        ConceptRelationshipView crEditor = new ConceptRelationshipView(oc,cc);
53
        UI.getCurrent().getNavigator().addView(FIRST_VIEW, crEditor);
54

    
55
    }
56

    
57
    @Override
58
    public String getFirstViewName() {
59
        return FIRST_VIEW;
60
    }
61

    
62
}
(4-4/12)