01: /*
02: * Copyright 2005-2006 The Kuali Foundation.
03: *
04: *
05: * Licensed under the Educational Community License, Version 1.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.opensource.org/licenses/ecl1.php
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package edu.iu.uis.eden.clientapp.vo;
18:
19: import java.io.Serializable;
20:
21: import edu.iu.uis.eden.actiontaken.ActionTakenValue;
22:
23: /**
24: * A transport object representing an {@link ActionTakenValue}
25: *
26: * @author ewestfal
27: * @author rkirkend
28: *
29: * @workflow.webservice-object
30: */
31: public class ReportActionToTakeVO implements Serializable {
32: private static final long serialVersionUID = 5212455086079117671L;
33:
34: private String actionToPerform;
35: private UserIdVO userIdVO;
36: private String nodeName;
37:
38: public ReportActionToTakeVO() {
39: }
40:
41: public ReportActionToTakeVO(String actionToPerform,
42: UserIdVO userIdVO, String nodeName) {
43: this .actionToPerform = actionToPerform;
44: this .userIdVO = userIdVO;
45: this .nodeName = nodeName;
46: }
47:
48: public String getActionToPerform() {
49: return actionToPerform;
50: }
51:
52: public void setActionToPerform(String actionToPerform) {
53: this .actionToPerform = actionToPerform;
54: }
55:
56: public String getNodeName() {
57: return nodeName;
58: }
59:
60: public void setNodeName(String nodeName) {
61: this .nodeName = nodeName;
62: }
63:
64: public UserIdVO getUserIdVO() {
65: return userIdVO;
66: }
67:
68: public void setUserIdVO(UserIdVO userIdVO) {
69: this.userIdVO = userIdVO;
70: }
71:
72: }
|