View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.student.contract.model;
17  
18  import java.util.List;
19  
20  /**
21   *
22   * @author nwright
23   */
24  public class OrchObj {
25  
26      private String parent;
27  
28      public String getParent() {
29          return parent;
30      }
31  
32      public void setParent(String parent) {
33          this.parent = parent;
34      }
35      private String card1;
36  
37      public String getCard1() {
38          return card1;
39      }
40  
41      public void setCard1(String card1) {
42          this.card1 = card1;
43      }
44      private String child;
45  
46      public String getChild() {
47          return child;
48      }
49  
50      public void setChild(String child) {
51          this.child = child;
52      }
53      private String card2;
54  
55      public String getCard2() {
56          return card2;
57      }
58  
59      public void setCard2(String card2) {
60          this.card2 = card2;
61      }
62      private String grandChild;
63  
64      public String getGrandChild() {
65          return grandChild;
66      }
67  
68      public void setGrandChild(String grandChild) {
69          this.grandChild = grandChild;
70      }
71      private String desc;
72  
73      public String getDesc() {
74          return desc;
75      }
76  
77      public void setDesc(String desc) {
78          this.desc = desc;
79      }
80      private String xmlType;
81  
82      public String getXmlType() {
83          return xmlType;
84      }
85  
86      public void setXmlType(String xmlType) {
87          this.xmlType = xmlType;
88      }
89      private String recursions;
90  
91      public String getRecursions() {
92          return recursions;
93      }
94  
95      public void setRecursions(String recursions) {
96          this.recursions = recursions;
97      }
98      private String status;
99  
100     public String getStatus() {
101         return status;
102     }
103 
104     public void setStatus(String status) {
105         this.status = status;
106     }
107     private String defaultValue;
108 
109     public String getDefaultValue() {
110         return defaultValue;
111     }
112 
113     public void setDefaultValue(String defaultValue) {
114         this.defaultValue = defaultValue;
115     }
116     private String defaultValuePath;
117 
118     public String getDefaultValuePath() {
119         return defaultValuePath;
120     }
121 
122     public void setDefaultValuePath(String defaultValuePath) {
123         this.defaultValuePath = defaultValuePath;
124     }
125     private String lookup;
126 
127     public String getLookup() {
128         return lookup;
129     }
130 
131     public void setLookup(String lookup) {
132         this.lookup = lookup;
133     }
134     private String lookupContextPath;
135 
136     public String getLookupContextPath() {
137         return lookupContextPath;
138     }
139 
140     public void setLookupContextPath(String lookupContextPath) {
141         this.lookupContextPath = lookupContextPath;
142     }
143     private String dictionaryId;
144 
145     public String getDictionaryId() {
146         return dictionaryId;
147     }
148 
149     public void setDictionaryId(String dictionaryId) {
150         this.dictionaryId = dictionaryId;
151     }
152     private List<String> constraintIds;
153 
154     public List<String> getConstraintIds() {
155         return constraintIds;
156     }
157 
158     public void setConstraintIds(List<String> constraintIds) {
159         this.constraintIds = constraintIds;
160     }
161     private String messageStructureKey;
162 
163     public String getMessageStructureKey() {
164         return messageStructureKey;
165     }
166 
167     public void setMessageStructureKey(String messageStructureKey) {
168         this.messageStructureKey = messageStructureKey;
169     }
170     private String selector;
171 
172     public String getSelector() {
173         return selector;
174     }
175 
176     public void setSelector(String selector) {
177         this.selector = selector;
178     }
179     private Constraint inlineConstraint;
180 
181     public Constraint getInlineConstraint() {
182         return inlineConstraint;
183     }
184 
185     public void setInlineConstraint(Constraint inlineConstraint) {
186         this.inlineConstraint = inlineConstraint;
187     }
188     private String comments;
189 
190     public String getComments() {
191         return comments;
192     }
193 
194     public void setComments(String comments) {
195         this.comments = comments;
196     }
197     private String id;
198 
199     public String getId() {
200         return id;
201     }
202 
203     public void setId(String id) {
204         this.id = id;
205     }
206     private String writeAccess;
207 
208     public String getWriteAccess() {
209         return writeAccess;
210     }
211 
212     public void setWriteAccess(String writeAccess) {
213         this.writeAccess = writeAccess;
214     }
215 }