001 /* 002 * Copyright 2009 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.osedu.org/licenses/ECL-2.0 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 */ 016 package org.kuali.student.contract.model; 017 018 /** 019 * 020 * @author nwright 021 */ 022 public class MessageStructure { 023 024 private String id; 025 private String xmlObject; 026 private String shortName; 027 private String name; 028 private String type; 029 private String url; 030 private String description; 031 private String required; 032 private String readOnly; 033 private String cardinality; 034 private String status; 035 private String xmlAttribute; 036 private String implNotes; 037 private boolean overriden; 038 039 public String getId() { 040 return id; 041 } 042 043 public void setId(String id) { 044 this.id = id; 045 } 046 047 public String getXmlObject() { 048 return xmlObject; 049 } 050 051 public void setXmlObject(String xmlObject) { 052 this.xmlObject = xmlObject; 053 } 054 055 public String getShortName() { 056 return shortName; 057 } 058 059 public void setShortName(String shortName) { 060 this.shortName = shortName; 061 } 062 063 public String getName() { 064 return name; 065 } 066 067 public void setName(String name) { 068 this.name = name; 069 } 070 071 public String getType() { 072 return type; 073 } 074 075 public void setType(String type) { 076 this.type = type; 077 } 078 079 public String getUrl() { 080 return url; 081 } 082 083 public void setUrl(String url) { 084 this.url = url; 085 } 086 087 public String getDescription() { 088 return description; 089 } 090 091 public void setDescription(String description) { 092 this.description = description; 093 } 094 095 public String getRequired() { 096 return required; 097 } 098 099 public void setRequired(String required) { 100 this.required = required; 101 } 102 103 public String getReadOnly() { 104 return readOnly; 105 } 106 107 public void setReadOnly(String readOnly) { 108 this.readOnly = readOnly; 109 } 110 111 public String getCardinality() { 112 return cardinality; 113 } 114 115 public void setCardinality(String cardinality) { 116 this.cardinality = cardinality; 117 } 118 119 public String getXmlAttribute() { 120 return xmlAttribute; 121 } 122 123 public void setXmlAttribute(String xmlAttribute) { 124 this.xmlAttribute = xmlAttribute; 125 } 126 127 public String getStatus() { 128 return status; 129 } 130 131 public void setStatus(String status) { 132 this.status = status; 133 } 134 135 public String getImplNotes() { 136 return implNotes; 137 } 138 139 public void setImplNotes(String implNotes) { 140 this.implNotes = implNotes; 141 } 142 143 public boolean isOverriden() { 144 return overriden; 145 } 146 147 public void setOverriden(boolean overriden) { 148 this.overriden = overriden; 149 } 150 }