01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/site-manage/tags/sakai_2-4-1/site-manage-util/util/src/java/org/sakaiproject/util/SubjectAffiliates.java $
03: * $Id: SubjectAffiliates.java 10961 2006-06-21 15:49:48Z dlhaines@umich.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.util;
21:
22: import java.util.Collection;
23: import java.util.Vector;
24: import java.lang.String;
25:
26: /**
27: * SubjectAffiliate A utility class representing Affiliates within academic subject areas.
28: */
29: public class SubjectAffiliates {
30: String m_subject = "";
31:
32: /** get subject */
33: public String getSubject() {
34: return m_subject;
35: } // getSubject
36:
37: /** set subject */
38: public void setSubject(String subject) {
39: m_subject = subject;
40:
41: } // setSubject
42:
43: String m_campus = "";
44:
45: /** get campus */
46: public String getCampus() {
47: return m_campus;
48:
49: } // getCampus
50:
51: /** set campus */
52: public void setCampus(String campus) {
53: m_campus = campus;
54:
55: } // setCampus
56:
57: // affiliates uniqnames
58: Collection m_uniqnames = new Vector();
59:
60: /** get affiliates uniqnames */
61: public Collection getUniqnames() {
62: return m_uniqnames;
63:
64: } // getUniqnames
65:
66: /** set affiliates uniqnames */
67: public void setUniqnames(Collection uniqnames) {
68: m_uniqnames = uniqnames;
69:
70: } // setUniqnames
71:
72: } // SubjectAffiliate
|