001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/profile/tags/sakai_2-4-1/common-composite-component-data/src/java/org/sakaiproject/component/common/edu/person/OrganizationalPersonImpl.java $
003: * $Id: OrganizationalPersonImpl.java 8424 2006-04-27 20:23:44Z ggolden@umich.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2003, 2004, 2005, 2006 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the "License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.component.common.edu.person;
021:
022: import org.sakaiproject.api.common.edu.person.OrganizationalPerson;
023: import org.sakaiproject.api.common.edu.person.Person;
024:
025: /**
026: * @author <a href="mailto:lance@indiana.edu">Lance Speelmon </a>
027: */
028: public class OrganizationalPersonImpl extends PersonImpl implements
029: Person, OrganizationalPerson {
030: protected String facsimileTelephoneNumber;
031:
032: /**
033: * @see org.sakaiproject.service.profile.OrganizationalPerson#getFacsimileTelephoneNumber()
034: */
035: public String getFacsimileTelephoneNumber() {
036: return facsimileTelephoneNumber;
037: }
038:
039: /**
040: * @param facsimileTelephoneNumber
041: * The facsimileTelephoneNumber to set.
042: */
043: public void setFacsimileTelephoneNumber(
044: String facsimileTelephoneNumber) {
045: this .facsimileTelephoneNumber = facsimileTelephoneNumber;
046: }
047:
048: protected String localityName;
049:
050: /**
051: * @see org.sakaiproject.service.profile.OrganizationalPerson#getLocalityName()
052: */
053: public String getLocalityName() {
054: return localityName;
055: }
056:
057: /**
058: * @param localityName
059: * The localityName to set.
060: */
061: public void setLocalityName(String localityName) {
062: this .localityName = localityName;
063: }
064:
065: protected String stateOrProvinceName;
066:
067: /**
068: * @see org.sakaiproject.service.profile.OrganizationalPerson#getStateOrProvinceName()
069: */
070: public String getStateOrProvinceName() {
071: return stateOrProvinceName;
072: }
073:
074: /**
075: * @param stateOrProvinceName
076: * The stateOrProvinceName to set.
077: */
078: public void setStateOrProvinceName(String stateOrProvinceName) {
079: this .stateOrProvinceName = stateOrProvinceName;
080: }
081:
082: protected String postalCode;
083:
084: /**
085: * @see org.sakaiproject.service.profile.OrganizationalPerson#getPostalCode()
086: */
087: public String getPostalCode() {
088: return postalCode;
089: }
090:
091: /**
092: * @param postalCode
093: * The postalCode to set.
094: */
095: public void setPostalCode(String postalCode) {
096: this .postalCode = postalCode;
097: }
098:
099: protected String postOfficeBox;
100:
101: /**
102: * @see org.sakaiproject.service.profile.OrganizationalPerson#getPostOfficeBox()
103: */
104: public String getPostOfficeBox() {
105: return postOfficeBox;
106: }
107:
108: /**
109: * @param postOfficeBox
110: * The postOfficeBox to set.
111: */
112: public void setPostOfficeBox(String postOfficeBox) {
113: this .postOfficeBox = postOfficeBox;
114: }
115:
116: protected String streetAddress;
117:
118: /**
119: * @see org.sakaiproject.service.profile.OrganizationalPerson#getStreetAddress()
120: */
121: public String getStreetAddress() {
122: return streetAddress;
123: }
124:
125: /**
126: * @param streetAddress
127: * The streetAddress to set.
128: */
129: public void setStreetAddress(String streetAddress) {
130: this .streetAddress = streetAddress;
131: }
132:
133: protected String physicalDeliveryOfficeName;
134:
135: /**
136: * @see org.sakaiproject.service.profile.OrganizationalPerson#getPhysicalDeliveryOfficeName()
137: */
138: public String getPhysicalDeliveryOfficeName() {
139: return physicalDeliveryOfficeName;
140: }
141:
142: /**
143: * @param physicalDeliveryOfficeName
144: * The physicalDeliveryOfficeName to set.
145: */
146: public void setPhysicalDeliveryOfficeName(
147: String physicalDeliveryOfficeName) {
148: this .physicalDeliveryOfficeName = physicalDeliveryOfficeName;
149: }
150:
151: protected String postalAddress;
152:
153: /**
154: * @see org.sakaiproject.service.profile.OrganizationalPerson#getPostalAddress()
155: */
156: public String getPostalAddress() {
157: return postalAddress;
158: }
159:
160: /**
161: * @param postalAddress
162: * The postalAddress to set.
163: */
164: public void setPostalAddress(String postalAddress) {
165: this .postalAddress = postalAddress;
166: }
167:
168: protected String title;
169:
170: /**
171: * @see org.sakaiproject.service.profile.OrganizationalPerson#getTitle()
172: */
173: public String getTitle() {
174: return title;
175: }
176:
177: /**
178: * @param title
179: * The title to set.
180: */
181: public void setTitle(String title) {
182: this .title = title;
183: }
184:
185: protected String organizationalUnit;
186:
187: /**
188: * @see org.sakaiproject.service.profile.OrganizationalPerson#getOrganizationalUnit()
189: */
190: public String getOrganizationalUnit() {
191: return organizationalUnit;
192: }
193:
194: /**
195: * @param organizationalUnit
196: * The organizationalUnit to set.
197: */
198: public void setOrganizationalUnit(String organizationalUnit) {
199: this.organizationalUnit = organizationalUnit;
200: }
201: }
|