Salome HOME
b6d1994617905716dbad1212d6d8fe584fae036a
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / UploadStudyAction.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   24.10.2012
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.simer; 
11
12 /**
13  * Action class for uploading the study.
14  * @author Maria KRUCHININA
15  *
16  */
17 public class UploadStudyAction extends Action {
18
19         /**
20          * Value of the menu property. 
21          * It can be: none, create, open, study, knowledge, sysadmin, help.
22          */
23         private String _menuProperty;
24
25         private static final long serialVersionUID = 6003880772275115924L;
26         
27         public String doInitialize () {
28
29             setMenuProperty("study");
30                 initializationScreenContext(_menuProperty);
31                         
32         return SUCCESS;
33         }
34         
35         /**
36          * Get the menuProperty.
37          * @return the menuProperty
38          */
39         public String getMenuProperty() {
40                 return _menuProperty;
41         }
42
43         /**
44          * Set the menuProperty.
45          * @param menuProperty the menuProperty to set
46          */
47         public void setMenuProperty(String menuProperty) {
48                 this._menuProperty = menuProperty;
49         }
50 }