1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.businessobject;
17
18 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19
20 import java.util.Date;
21 import java.util.LinkedHashMap;
22
23 public class PreOrderRequestTransEntry extends PersistableBusinessObjectBase {
24 private Long preRequestOrderId;
25 private Long titleId;
26 private Boolean routeToRequestor;
27 private Long requestorContactInfo;
28 private String noteFromPatron;
29 private String typeOfContactInformation;
30 private Long numberOfCopies;
31 private String requestSource;
32 private Date dateTimeStamp;
33
34
35 public Long getPreRequestOrderId() {
36 return preRequestOrderId;
37 }
38
39
40 public void setPreRequestOrderId(Long preRequestOrderId) {
41 this.preRequestOrderId = preRequestOrderId;
42 }
43
44
45 public Long getTitleId() {
46 return titleId;
47 }
48
49
50 public void setTitleId(Long titleId) {
51 this.titleId = titleId;
52 }
53
54
55 public Boolean getRouteToRequestor() {
56 return routeToRequestor;
57 }
58
59
60 public void setRouteToRequestor(Boolean routeToRequestor) {
61 this.routeToRequestor = routeToRequestor;
62 }
63
64
65 public Long getRequestorContactInfo() {
66 return requestorContactInfo;
67 }
68
69
70 public void setRequestorContactInfo(Long requestorContactInfo) {
71 this.requestorContactInfo = requestorContactInfo;
72 }
73
74
75 public String getNoteFromPatron() {
76 return noteFromPatron;
77 }
78
79
80 public void setNoteFromPatron(String noteFromPatron) {
81 this.noteFromPatron = noteFromPatron;
82 }
83
84
85 public String getTypeOfContactInformation() {
86 return typeOfContactInformation;
87 }
88
89
90 public void setTypeOfContactInformation(String typeOfContactInformation) {
91 this.typeOfContactInformation = typeOfContactInformation;
92 }
93
94
95 public Long getNumberOfCopies() {
96 return numberOfCopies;
97 }
98
99
100 public void setNumberOfCopies(Long numberOfCopies) {
101 this.numberOfCopies = numberOfCopies;
102 }
103
104
105 public String getRequestSource() {
106 return requestSource;
107 }
108
109
110 public void setRequestSource(String requestSource) {
111 this.requestSource = requestSource;
112 }
113
114
115 public Date getDateTimeStamp() {
116 return dateTimeStamp;
117 }
118
119
120 public void setDateTimeStamp(Date dateTimeStamp) {
121 this.dateTimeStamp = dateTimeStamp;
122 }
123
124
125 @SuppressWarnings("rawtypes")
126
127 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
128 LinkedHashMap<String, Object> map = new LinkedHashMap<String, Object>();
129 map.put("routeToRequestor", routeToRequestor);
130 map.put("noteFromPatron", noteFromPatron);
131 map.put("requestorContactInfo", requestorContactInfo);
132 map.put("typeOfContactInformation", typeOfContactInformation);
133 map.put("numberOfCopies", numberOfCopies);
134 map.put("requestSource", requestorContactInfo);
135 map.put("dateTimeStamp", dateTimeStamp);
136 return map;
137 }
138
139 }