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: import java.util.Calendar;
021:
022: import edu.iu.uis.eden.actiontaken.ActionTakenValue;
023:
024: /**
025: * A transport object representing an {@link ActionTakenValue}
026: *
027: * @author ewestfal
028: * @author rkirkend
029: *
030: * @workflow.webservice-object
031: */
032: public class ActionTakenVO implements Serializable {
033: static final long serialVersionUID = -8818100923517546091L;
034: private Long actionTakenId;
035: private Long routeHeaderId;
036: private Integer docVersion;
037: private UserVO userVO;
038: private UserVO delegatorVO;
039: private String actionTaken;
040: private Calendar actionDate;
041: private String annotation = null;
042:
043: public ActionTakenVO() {
044: }
045:
046: public Calendar getActionDate() {
047: return actionDate;
048: }
049:
050: public String getActionTaken() {
051: return actionTaken;
052: }
053:
054: public Long getActionTakenId() {
055: return actionTakenId;
056: }
057:
058: public String getAnnotation() {
059: return annotation;
060: }
061:
062: public Integer getDocVersion() {
063: return docVersion;
064: }
065:
066: public Long getRouteHeaderId() {
067: return routeHeaderId;
068: }
069:
070: public void setRouteHeaderId(Long routeHeaderId) {
071: this .routeHeaderId = routeHeaderId;
072: }
073:
074: public void setDocVersion(Integer docVersion) {
075: this .docVersion = docVersion;
076: }
077:
078: public void setAnnotation(String annotation) {
079: this .annotation = annotation;
080: }
081:
082: public void setActionTakenId(Long actionTakenId) {
083: this .actionTakenId = actionTakenId;
084: }
085:
086: public void setActionTaken(String actionTaken) {
087: this .actionTaken = actionTaken;
088: }
089:
090: public void setActionDate(Calendar actionDate) {
091: this .actionDate = actionDate;
092: }
093:
094: public UserVO getUserVO() {
095: return userVO;
096: }
097:
098: public void setUserVO(UserVO userVO) {
099: this .userVO = userVO;
100: }
101:
102: public UserVO getDelegatorVO() {
103: return delegatorVO;
104: }
105:
106: public void setDelegatorVO(UserVO delegatorVO) {
107: this.delegatorVO = delegatorVO;
108: }
109:
110: }
|