1 /* 2 * Copyright 2010 The Kuali Foundation. 3 * 4 * Licensed under the Educational Community License, Version 1.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/ecl1.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.ole.integration.cg.dto; 17 18 public class KcObjectCode { 19 String objectCodeName; 20 String description; 21 22 /** 23 * Gets the objectCodeName attribute. 24 * @return Returns the objectCodeName. 25 */ 26 public String getObjectCodeName() { 27 return objectCodeName; 28 } 29 /** 30 * Sets the objectCodeName attribute value. 31 * @param objectCodeName The objectCodeName to set. 32 */ 33 public void setObjectCodeName(String objectCodeName) { 34 this.objectCodeName = objectCodeName; 35 } 36 /** 37 * Gets the description attribute. 38 * @return Returns the description. 39 */ 40 public String getDescription() { 41 return description; 42 } 43 /** 44 * Sets the description attribute value. 45 * @param description The description to set. 46 */ 47 public void setDescription(String description) { 48 this.description = description; 49 } 50 }