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.quicklinks;
18:
19: /**
20: * Represents a document that is being watched from the Quick Links.
21: *
22: * @author bmcgough
23: */
24: public class WatchedDocument {
25: private String documentHeaderId;
26: private String documentStatusCode;
27: private String documentTitle;
28:
29: public WatchedDocument(String documentHeaderId,
30: String documentStatusCode, String documentTitle) {
31: this .documentHeaderId = documentHeaderId;
32: this .documentStatusCode = documentStatusCode;
33: this .documentTitle = documentTitle;
34: }
35:
36: public String getDocumentHeaderId() {
37: return documentHeaderId;
38: }
39:
40: public void setDocumentHeaderId(String documentHeaderId) {
41: this .documentHeaderId = documentHeaderId;
42: }
43:
44: public String getDocumentStatusCode() {
45: return documentStatusCode;
46: }
47:
48: public void setDocumentStatusCode(String documentStatusCode) {
49: this .documentStatusCode = documentStatusCode;
50: }
51:
52: public String getDocumentTitle() {
53: return documentTitle;
54: }
55:
56: public void setDocumentTitle(String documentTitle) {
57: this.documentTitle = documentTitle;
58: }
59: }
|