1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.docsearch; |
18 | |
|
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.hibernate.annotations.GenericGenerator; |
21 | |
import org.hibernate.annotations.Parameter; |
22 | |
import org.kuali.rice.core.api.CoreApiServiceLocator; |
23 | |
import org.kuali.rice.core.api.util.RiceConstants; |
24 | |
import org.kuali.rice.core.framework.persistence.jdbc.sql.SqlBuilder; |
25 | |
import org.kuali.rice.core.framework.persistence.jpa.OrmUtils; |
26 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
27 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
28 | |
import org.kuali.rice.kew.util.KEWConstants; |
29 | |
|
30 | |
import javax.persistence.CascadeType; |
31 | |
import javax.persistence.Column; |
32 | |
import javax.persistence.Entity; |
33 | |
import javax.persistence.FetchType; |
34 | |
import javax.persistence.GeneratedValue; |
35 | |
import javax.persistence.Id; |
36 | |
import javax.persistence.JoinColumn; |
37 | |
import javax.persistence.ManyToOne; |
38 | |
import javax.persistence.NamedQueries; |
39 | |
import javax.persistence.NamedQuery; |
40 | |
import javax.persistence.Table; |
41 | |
import javax.persistence.Transient; |
42 | |
import java.io.Serializable; |
43 | |
import java.sql.Date; |
44 | |
import java.sql.ResultSet; |
45 | |
import java.sql.SQLException; |
46 | |
import java.sql.Timestamp; |
47 | |
import java.text.DateFormat; |
48 | |
import java.text.ParseException; |
49 | |
import java.text.SimpleDateFormat; |
50 | |
import java.util.Calendar; |
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | 0 | @Entity |
58 | |
@Table(name="KREW_DOC_HDR_EXT_DT_T") |
59 | |
|
60 | |
@NamedQueries({ |
61 | |
@NamedQuery(name="SearchableAttributeDateTimeValue.FindByDocumentId", query="select s from SearchableAttributeDateTimeValue as s where s.documentId = :documentId"), |
62 | |
@NamedQuery(name="SearchableAttributeDateTimeValue.FindByKey", query="select s from SearchableAttributeDateTimeValue as s where s.documentId = :documentId and s.searchableAttributeKey = :searchableAttributeKey") |
63 | |
}) |
64 | |
public class SearchableAttributeDateTimeValue implements SearchableAttributeValue, Serializable { |
65 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(SearchableAttributeDateTimeValue.class); |
66 | |
|
67 | |
private static final long serialVersionUID = 3045621112943214772L; |
68 | |
|
69 | |
private static final String ATTRIBUTE_DATABASE_TABLE_NAME = "KREW_DOC_HDR_EXT_DT_T"; |
70 | |
private static final boolean DEFAULT_WILDCARD_ALLOWANCE_POLICY = false; |
71 | |
private static final boolean ALLOWS_RANGE_SEARCH = true; |
72 | |
private static final boolean ALLOWS_CASE_INSENSITIVE_SEARCH = false; |
73 | |
private static final String ATTRIBUTE_XML_REPRESENTATION = KEWConstants.SearchableAttributeConstants.DATA_TYPE_DATE; |
74 | |
|
75 | |
@Id |
76 | |
@GeneratedValue(generator="KREW_SRCH_ATTR_S") |
77 | |
@GenericGenerator(name="KREW_SRCH_ATTR_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={ |
78 | |
@Parameter(name="sequence_name",value="KREW_SRCH_ATTR_S"), |
79 | |
@Parameter(name="value_column",value="id") |
80 | |
}) |
81 | |
@Column(name="DOC_HDR_EXT_DT_ID") |
82 | |
private String searchableAttributeValueId; |
83 | |
@Column(name="KEY_CD") |
84 | |
private String searchableAttributeKey; |
85 | |
@Column(name="VAL") |
86 | |
private Timestamp searchableAttributeValue; |
87 | |
@Transient |
88 | |
protected String ojbConcreteClass; |
89 | |
|
90 | |
@Column(name="DOC_HDR_ID") |
91 | |
private String documentId; |
92 | |
@ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST}) |
93 | |
@JoinColumn(name="DOC_HDR_ID", insertable=false, updatable=false) |
94 | |
private DocumentRouteHeaderValue routeHeader; |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
public SearchableAttributeDateTimeValue() { |
100 | 0 | super(); |
101 | 0 | this.ojbConcreteClass = this.getClass().getName(); |
102 | 0 | } |
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
public void setupAttributeValue(String value) { |
108 | 0 | this.setSearchableAttributeValue(convertStringToTimestamp(value)); |
109 | 0 | } |
110 | |
|
111 | |
private Timestamp convertStringToTimestamp(String value) { |
112 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(value)) { |
113 | 0 | return null; |
114 | |
} else { |
115 | |
Timestamp t; |
116 | |
try { |
117 | 0 | t = CoreApiServiceLocator.getDateTimeService().convertToSqlTimestamp(value); |
118 | 0 | } catch (ParseException e) { |
119 | 0 | t = null; |
120 | 0 | } |
121 | 0 | if (t == null) { |
122 | 0 | String errorMsg = "Error converting timestamp value '" + value + "' to valid timestamp object."; |
123 | 0 | LOG.error("setupAttributeValue() " + errorMsg); |
124 | 0 | throw new RuntimeException(errorMsg); |
125 | |
} |
126 | 0 | return t; |
127 | |
} |
128 | |
} |
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
public void setupAttributeValue(ResultSet resultSet, String columnName) throws SQLException { |
134 | 0 | Calendar c = Calendar.getInstance(); |
135 | 0 | c.clear(Calendar.HOUR); |
136 | 0 | c.clear(Calendar.MINUTE); |
137 | 0 | c.clear(Calendar.SECOND); |
138 | 0 | c.clear(Calendar.MILLISECOND); |
139 | 0 | this.setSearchableAttributeValue(resultSet.getTimestamp(columnName, c)); |
140 | 0 | } |
141 | |
|
142 | |
|
143 | |
|
144 | |
|
145 | |
public String getSearchableAttributeDisplayValue() { |
146 | 0 | return formatAttributeValue(null); |
147 | |
} |
148 | |
|
149 | |
private String formatAttributeValue(String formatPattern) { |
150 | 0 | DateFormat df = getDateFormatToUse(formatPattern); |
151 | 0 | return df.format(new Date(getSearchableAttributeValue().getTime())); |
152 | |
} |
153 | |
|
154 | |
private DateFormat getDateFormatToUse(String parameterFormatPattern) { |
155 | 0 | if (StringUtils.isNotBlank(parameterFormatPattern)) { |
156 | 0 | return new SimpleDateFormat(parameterFormatPattern); |
157 | |
} |
158 | 0 | return RiceConstants.getDefaultDateFormat(); |
159 | |
} |
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
public String getAttributeDataType() { |
165 | 0 | return ATTRIBUTE_XML_REPRESENTATION; |
166 | |
} |
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | |
public String getAttributeTableName() { |
172 | 0 | return ATTRIBUTE_DATABASE_TABLE_NAME; |
173 | |
} |
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
public boolean allowsWildcards() { |
179 | 0 | return DEFAULT_WILDCARD_ALLOWANCE_POLICY; |
180 | |
} |
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
public boolean allowsCaseInsensitivity() { |
186 | 0 | return ALLOWS_CASE_INSENSITIVE_SEARCH; |
187 | |
} |
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
public boolean allowsRangeSearches() { |
193 | 0 | return ALLOWS_RANGE_SEARCH; |
194 | |
} |
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
public boolean isPassesDefaultValidation(String valueEntered) { |
200 | 0 | return new SqlBuilder().isValidDate(valueEntered); |
201 | |
|
202 | |
} |
203 | |
|
204 | |
|
205 | |
|
206 | |
|
207 | |
public Boolean isRangeValid(String lowerValue, String upperValue) { |
208 | 0 | if (allowsRangeSearches()) { |
209 | 0 | Timestamp lowerTime = convertStringToTimestamp(lowerValue); |
210 | 0 | Timestamp upperTime = convertStringToTimestamp(upperValue); |
211 | 0 | if ( (lowerTime != null) && (upperTime != null) ) { |
212 | 0 | return (lowerTime.compareTo(upperTime) <= 0); |
213 | |
} |
214 | 0 | return true; |
215 | |
} |
216 | 0 | return null; |
217 | |
} |
218 | |
|
219 | |
public String getOjbConcreteClass() { |
220 | 0 | return ojbConcreteClass; |
221 | |
} |
222 | |
|
223 | |
public void setOjbConcreteClass(String ojbConcreteClass) { |
224 | 0 | this.ojbConcreteClass = ojbConcreteClass; |
225 | 0 | } |
226 | |
|
227 | |
public DocumentRouteHeaderValue getRouteHeader() { |
228 | 0 | return routeHeader; |
229 | |
} |
230 | |
|
231 | |
public void setRouteHeader(DocumentRouteHeaderValue routeHeader) { |
232 | 0 | this.routeHeader = routeHeader; |
233 | 0 | } |
234 | |
|
235 | |
public String getDocumentId() { |
236 | 0 | return documentId; |
237 | |
} |
238 | |
|
239 | |
public void setDocumentId(String documentId) { |
240 | 0 | this.documentId = documentId; |
241 | 0 | } |
242 | |
|
243 | |
public String getSearchableAttributeKey() { |
244 | 0 | return searchableAttributeKey; |
245 | |
} |
246 | |
|
247 | |
public void setSearchableAttributeKey(String searchableAttributeKey) { |
248 | 0 | this.searchableAttributeKey = searchableAttributeKey; |
249 | 0 | } |
250 | |
|
251 | |
public Timestamp getSearchableAttributeValue() { |
252 | 0 | return searchableAttributeValue; |
253 | |
} |
254 | |
|
255 | |
public void setSearchableAttributeValue(Timestamp searchableAttributeValue) { |
256 | 0 | this.searchableAttributeValue = searchableAttributeValue; |
257 | 0 | } |
258 | |
|
259 | |
public String getSearchableAttributeValueId() { |
260 | 0 | return searchableAttributeValueId; |
261 | |
} |
262 | |
|
263 | |
public void setSearchableAttributeValueId(String searchableAttributeValueId) { |
264 | 0 | this.searchableAttributeValueId = searchableAttributeValueId; |
265 | 0 | } |
266 | |
|
267 | |
|
268 | |
public void beforeInsert(){ |
269 | 0 | OrmUtils.populateAutoIncValue(this, KEWServiceLocator.getEntityManagerFactory().createEntityManager()); |
270 | 0 | } |
271 | |
} |
272 | |
|