001 /**
002 * Copyright 2010 The Kuali Foundation Licensed under the
003 * Educational Community License, Version 2.0 (the "License"); you may
004 * not use this file except in compliance with the License. You may
005 * obtain a copy of the License at
006 *
007 * http://www.osedu.org/licenses/ECL-2.0
008 *
009 * Unless required by applicable law or agreed to in writing,
010 * software distributed under the License is distributed on an "AS IS"
011 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
012 * or implied. See the License for the specific language governing
013 * permissions and limitations under the License.
014 */
015
016 package org.kuali.student.lum.lu.dto;
017
018 import java.io.Serializable;
019
020 import javax.xml.bind.annotation.XmlAccessType;
021 import javax.xml.bind.annotation.XmlAccessorType;
022 import javax.xml.bind.annotation.XmlElement;
023
024 /**
025 * Information about an organization that represents the Academic Subject for a learning unit. This often would be the same as the primaryAdminOrg.
026 *
027 * @Author KSContractMojo
028 * @Author Kamal
029 * @Since Mon Jan 11 15:20:14 PST 2010
030 * @See <a href="https://test.kuali.org/confluence/display/KULSTU/academicSubjectOrgInfo+Structure+v1.0-rc2">AcademicSubjectOrgInfo</>
031 *
032 */
033 @XmlAccessorType(XmlAccessType.FIELD)
034 public class AcademicSubjectOrgInfo implements Serializable {
035
036 private static final long serialVersionUID = 1L;
037
038 @XmlElement
039 private String orgId;
040
041 /**
042 * Unique identifier for an organization.
043 */
044 public String getOrgId() {
045 return orgId;
046 }
047
048 public void setOrgId(String orgId) {
049 this.orgId = orgId;
050 }
051 }