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: import java.util.Calendar;
21:
22: import edu.iu.uis.eden.notes.Note;
23:
24: /**
25: * Transport object for a {@link Note}
26: *
27: * @author rkirkend
28: *
29: * @workflow.webservice-object
30: */
31: public class NoteVO implements Serializable {
32:
33: static final long serialVersionUID = 3278600875270364172L;
34:
35: private Long noteId;
36: private Long routeHeaderId;
37: private String noteAuthorWorkflowId;
38: private Calendar noteCreateDate;
39: private String noteText;
40: private Integer lockVerNbr;
41:
42: public Integer getLockVerNbr() {
43: return lockVerNbr;
44: }
45:
46: public void setLockVerNbr(Integer lockVerNbr) {
47: this .lockVerNbr = lockVerNbr;
48: }
49:
50: public String getNoteAuthorWorkflowId() {
51: return noteAuthorWorkflowId;
52: }
53:
54: public void setNoteAuthorWorkflowId(String noteAuthorWorkflowId) {
55: this .noteAuthorWorkflowId = noteAuthorWorkflowId;
56: }
57:
58: public Calendar getNoteCreateDate() {
59: return noteCreateDate;
60: }
61:
62: public void setNoteCreateDate(Calendar noteCreateDate) {
63: this .noteCreateDate = noteCreateDate;
64: }
65:
66: public Long getNoteId() {
67: return noteId;
68: }
69:
70: public void setNoteId(Long noteId) {
71: this .noteId = noteId;
72: }
73:
74: public String getNoteText() {
75: return noteText;
76: }
77:
78: public void setNoteText(String noteText) {
79: this .noteText = noteText;
80: }
81:
82: public Long getRouteHeaderId() {
83: return routeHeaderId;
84: }
85:
86: public void setRouteHeaderId(Long routeHeaderId) {
87: this.routeHeaderId = routeHeaderId;
88: }
89:
90: }
|