001: /*
002: * Copyright 2005-2006 The Kuali Foundation.
003: *
004: *
005: * Licensed under the Educational Community License, Version 1.0 (the "License");
006: * you may not use this file except in compliance with the License.
007: * You may obtain a copy of the License at
008: *
009: * http://www.opensource.org/licenses/ecl1.php
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017: package edu.iu.uis.eden.clientapp.vo;
018:
019: import java.io.Serializable;
020:
021: import edu.iu.uis.eden.user.WorkflowUser;
022:
023: /**
024: * Transport object representing a {@link WorkflowUser}.
025: *
026: * @author rkirkend
027: * @author ewestfal
028: *
029: * @workflow.webservice-object
030: */
031: public class UserVO implements Serializable {
032:
033: static final long serialVersionUID = -5651830932718276022L;
034:
035: private String networkId;
036: private String uuId;
037: private String emplId;
038: private String workflowId;
039: private String displayName;
040: private String lastName;
041: private String firstName;
042: private String emailAddress;
043: private boolean userPreferencePopDocHandler;
044:
045: public UserVO() {
046: }
047:
048: public String getEmailAddress() {
049: return emailAddress;
050: }
051:
052: public String getFirstName() {
053: return firstName;
054: }
055:
056: public String getLastName() {
057: return lastName;
058: }
059:
060: public String getEmplId() {
061: return emplId;
062: }
063:
064: public void setEmplId(String emplId) {
065: this .emplId = emplId;
066: }
067:
068: public String getNetworkId() {
069: return networkId;
070: }
071:
072: public void setNetworkId(String netId) {
073: this .networkId = netId;
074: }
075:
076: public String getUuId() {
077: return uuId;
078: }
079:
080: public void setUuId(String uuId) {
081: this .uuId = uuId;
082: }
083:
084: public String getWorkflowId() {
085: return workflowId;
086: }
087:
088: public void setWorkflowId(String workflowId) {
089: this .workflowId = workflowId;
090: }
091:
092: public void setEmailAddress(String emailAddress) {
093: this .emailAddress = emailAddress;
094: }
095:
096: public void setFirstName(String firstName) {
097: this .firstName = firstName;
098: }
099:
100: public void setLastName(String lastName) {
101: this .lastName = lastName;
102: }
103:
104: public void setDisplayName(String displayName) {
105: this .displayName = displayName;
106: }
107:
108: public String getDisplayName() {
109: return displayName;
110: }
111:
112: public boolean isUserPreferencePopDocHandler() {
113: return userPreferencePopDocHandler;
114: }
115:
116: public void setUserPreferencePopDocHandler(
117: boolean userPreferencePopDocHandler) {
118: this.userPreferencePopDocHandler = userPreferencePopDocHandler;
119: }
120: }
|