KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jmanage > webui > forms > AttributeSelectionForm


1 /**
2  * Copyright 2004-2005 jManage.org
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.jmanage.webui.forms;
17
18 /**
19  * Date: Aug 24, 2005 2:10:30 PM
20  * @author Bhavana
21  * @author Shashank Bellary
22  */

23 public class AttributeSelectionForm extends BaseForm{
24     private String JavaDoc[] mbeans;
25     private String JavaDoc endURL;
26     private String JavaDoc[] attributes;
27     private String JavaDoc multiple;
28     private String JavaDoc attribute;
29     private String JavaDoc[] dataTypes;
30     private String JavaDoc alertSourceType;
31     private String JavaDoc navigation;
32     private String JavaDoc objectName;
33
34     public String JavaDoc getNavigation() {
35         return navigation;
36     }
37
38     public void setNavigation(String JavaDoc navigation) {
39         this.navigation = navigation;
40     }
41
42     public String JavaDoc getAlertSourceType(){
43         return alertSourceType;
44     }
45
46     public void setAlertSourceType(String JavaDoc alertSourceType){
47         this.alertSourceType = alertSourceType;
48     }
49
50     public String JavaDoc[] getDataTypes(){
51         return dataTypes;
52     }
53     public void setDataTypes(String JavaDoc[] dataTypes){
54         this.dataTypes = dataTypes;
55     }
56     public String JavaDoc getAttribute() {
57         return attribute;
58     }
59
60     public void setAttribute(String JavaDoc attribute) {
61         this.attribute = attribute;
62     }
63
64     public String JavaDoc getMultiple() {
65         return multiple;
66     }
67
68     public void setMultiple(String JavaDoc multiple) {
69         this.multiple = multiple;
70     }
71
72     public String JavaDoc[] getMbeans() {
73         return mbeans;
74     }
75
76     public void setMbeans(String JavaDoc[] mbeans) {
77         this.mbeans = mbeans;
78     }
79
80     public String JavaDoc getEndURL(){
81         return endURL;
82     }
83
84     public void setEndURL(String JavaDoc endURL){
85         this.endURL = endURL;
86     }
87     public String JavaDoc[] getAttributes() {
88         return attributes;
89     }
90
91     public void setAttributes(String JavaDoc[] attributes) {
92         this.attributes = attributes;
93     }
94
95     public String JavaDoc getObjectName() {
96         return objectName;
97     }
98
99     public void setObjectName(String JavaDoc objectName) {
100         this.objectName = objectName;
101     }
102 }
103
Popular Tags