001/*
002 * Copyright 2010 The Kuali Foundation.
003 * 
004 * Licensed under the Educational Community License, Version 1.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/ecl1.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.ole.integration.cg.dto;
017
018public class KcObjectCode {
019    String  objectCodeName;
020    String  description;
021   
022     /**
023     * Gets the objectCodeName attribute. 
024     * @return Returns the objectCodeName.
025     */
026    public String getObjectCodeName() {
027        return objectCodeName;
028    }
029    /**
030     * Sets the objectCodeName attribute value.
031     * @param objectCodeName The objectCodeName to set.
032     */
033    public void setObjectCodeName(String objectCodeName) {
034        this.objectCodeName = objectCodeName;
035    }
036    /**
037     * Gets the description attribute. 
038     * @return Returns the description.
039     */
040    public String getDescription() {
041        return description;
042    }
043    /**
044     * Sets the description attribute value.
045     * @param description The description to set.
046     */
047    public void setDescription(String description) {
048        this.description = description;
049    }
050}