KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nextime > ion > admin > form > PubliForm


1 package org.nextime.ion.admin.form;
2
3 import org.apache.struts.action.*;
4 import java.util.*;
5
6 public class PubliForm extends ActionForm {
7     
8     private String JavaDoc _id;
9     private String JavaDoc _name;
10     private String JavaDoc[] _sectionsId;
11     private String JavaDoc[] _categoriesId;
12     private String JavaDoc _type;
13     private String JavaDoc _author;
14     private String JavaDoc _state;
15     private String JavaDoc _workflow;
16     private String JavaDoc _workflowUser;
17     private String JavaDoc _version;
18     
19     public String JavaDoc getId() {
20         return _id;
21     }
22     
23     public void setVersion( String JavaDoc value ) {
24         _version = value.trim();
25     }
26     
27     public String JavaDoc getVersion() {
28         return _version;
29     }
30     
31     public void setId( String JavaDoc value ) {
32         _id = value.trim();
33     }
34     
35     public String JavaDoc[] getSections() {
36         return _sectionsId;
37     }
38     
39     public void setSections( String JavaDoc[] value ) {
40         _sectionsId = value;
41     }
42     
43     public String JavaDoc[] getCategories() {
44         return _categoriesId;
45     }
46     
47     public void setCategories( String JavaDoc[] value ) {
48         _categoriesId = value;
49     }
50     
51     public String JavaDoc getState() {
52         return _state;
53     }
54     
55     public void setState( String JavaDoc value ) {
56         _state = value;
57     }
58     
59     public String JavaDoc getWorkflow() {
60         return _workflow;
61     }
62     
63     public void setWorkflow( String JavaDoc value ) {
64         _workflow = value;
65     }
66     
67     public String JavaDoc getWorkflowUser() {
68         return _workflowUser;
69     }
70     
71     public void setWorkflowUser( String JavaDoc value ) {
72         _workflowUser = value;
73     }
74     
75     public String JavaDoc getAuthor() {
76         return _author;
77     }
78     
79     public void setAuthor( String JavaDoc value ) {
80         _author = value;
81     }
82     
83     public String JavaDoc getType() {
84         return _type;
85     }
86     
87     public void setType( String JavaDoc value ) {
88         _type = value;
89     }
90     
91     public void reset() {
92         _id = null;
93         _name = null;
94         _author = null;
95         _type = null;
96         _state = "";
97         _sectionsId = new String JavaDoc[0];
98         _categoriesId = new String JavaDoc[0];
99     }
100
101 }
102
103
Popular Tags