001/** 002 * Copyright 2004-2014 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.student.contract.model; 017 018import java.util.List; 019 020/** 021 * 022 * @author nwright 023 */ 024public class OrchObj { 025 026 private String parent; 027 028 public String getParent() { 029 return parent; 030 } 031 032 public void setParent(String parent) { 033 this.parent = parent; 034 } 035 private String card1; 036 037 public String getCard1() { 038 return card1; 039 } 040 041 public void setCard1(String card1) { 042 this.card1 = card1; 043 } 044 private String child; 045 046 public String getChild() { 047 return child; 048 } 049 050 public void setChild(String child) { 051 this.child = child; 052 } 053 private String card2; 054 055 public String getCard2() { 056 return card2; 057 } 058 059 public void setCard2(String card2) { 060 this.card2 = card2; 061 } 062 private String grandChild; 063 064 public String getGrandChild() { 065 return grandChild; 066 } 067 068 public void setGrandChild(String grandChild) { 069 this.grandChild = grandChild; 070 } 071 private String desc; 072 073 public String getDesc() { 074 return desc; 075 } 076 077 public void setDesc(String desc) { 078 this.desc = desc; 079 } 080 private String xmlType; 081 082 public String getXmlType() { 083 return xmlType; 084 } 085 086 public void setXmlType(String xmlType) { 087 this.xmlType = xmlType; 088 } 089 private String recursions; 090 091 public String getRecursions() { 092 return recursions; 093 } 094 095 public void setRecursions(String recursions) { 096 this.recursions = recursions; 097 } 098 private String status; 099 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}