Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DelegationTypeFormatter |
|
| 5.0;5 |
1 | /* | |
2 | * Copyright 2004 Jonathan M. Lehr | |
3 | * | |
4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | |
5 | * You may obtain a copy of the License at | |
6 | * | |
7 | * http://www.apache.org/licenses/LICENSE-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, software | |
10 | * distributed under the License is distributed on an "AS IS" BASIS, | |
11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | * See the License for the specific language governing permissions and | |
13 | * limitations under the License. | |
14 | * | |
15 | * MODIFIED BY THE KUALI FOUNDATION | |
16 | */ | |
17 | // begin Kuali Foundation modification | |
18 | package org.kuali.rice.kns.web.format; | |
19 | // end Kuali Foundation modification | |
20 | ||
21 | import java.util.Arrays; | |
22 | import java.util.List; | |
23 | ||
24 | import org.kuali.rice.kew.util.KEWConstants; | |
25 | import org.kuali.rice.kns.util.RiceKeyConstants; | |
26 | ||
27 | /** | |
28 | * begin Kuali Foundation modification | |
29 | * This class is used to format boolean values. | |
30 | * end Kuali Foundation modification | |
31 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
32 | */ | |
33 | 0 | public class DelegationTypeFormatter extends Formatter { |
34 | private static final long serialVersionUID = -4109390572922205211L; | |
35 | /* | |
36 | protected Object convertToObject(String target) { | |
37 | if (Formatter.isEmptyValue(target)) | |
38 | return null; | |
39 | ||
40 | String stringValue = target.getClass().isArray() ? unwrapString(target) : (String) target; | |
41 | stringValue = stringValue.trim().toUpperCase(); | |
42 | ||
43 | return KEWConstants.DELEGATION_TYPES.get(stringValue); | |
44 | if (TRUE_VALUES.contains(stringValue)) | |
45 | return Boolean.TRUE; | |
46 | if (FALSE_VALUES.contains(stringValue)) | |
47 | return Boolean.FALSE; | |
48 | ||
49 | // begin Kuali Foundation modification | |
50 | // was: throw new FormatException(CONVERT_MSG + stringValue); | |
51 | throw new FormatException("converting", RiceKeyConstants.ERROR_BOOLEAN, stringValue); | |
52 | // end Kuali Foundation modification | |
53 | } | |
54 | */ | |
55 | public Object format(Object target) { | |
56 | 0 | if (target == null) |
57 | 0 | return null; |
58 | // begin Kuali Foundation modification | |
59 | 0 | if (target instanceof String) { |
60 | 0 | return KEWConstants.DELEGATION_TYPES.get(((String)target).trim().toUpperCase()); |
61 | } else { | |
62 | 0 | return ""; |
63 | } | |
64 | } | |
65 | } |