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