1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.api.action; |
17 | |
|
18 | |
import javax.xml.bind.annotation.XmlEnum; |
19 | |
import javax.xml.bind.annotation.XmlEnumValue; |
20 | |
import javax.xml.bind.annotation.XmlRootElement; |
21 | |
import javax.xml.bind.annotation.XmlType; |
22 | |
|
23 | |
import org.kuali.rice.core.api.mo.common.Coded; |
24 | |
|
25 | 0 | @XmlRootElement(name = "delegationType") |
26 | |
@XmlType(name = "DelegationTypeType") |
27 | |
@XmlEnum |
28 | |
public enum DelegationType implements Coded { |
29 | |
|
30 | 0 | @XmlEnumValue("P") |
31 | |
PRIMARY("P", "Primary"), |
32 | |
|
33 | 0 | @XmlEnumValue("S") |
34 | |
SECONDARY("S", "Secondary"); |
35 | |
|
36 | |
private final String code; |
37 | |
private final String label; |
38 | |
|
39 | 0 | DelegationType(String code, String label) { |
40 | 0 | this.code = code; |
41 | 0 | this.label = label; |
42 | 0 | } |
43 | |
|
44 | |
@Override |
45 | |
public String getCode() { |
46 | 0 | return code; |
47 | |
} |
48 | |
|
49 | |
public String getLabel() { |
50 | 0 | return label; |
51 | |
} |
52 | |
|
53 | |
public static DelegationType fromCode(String code) { |
54 | 0 | if (code == null) { |
55 | 0 | return null; |
56 | |
} |
57 | 0 | for (DelegationType value : values()) { |
58 | 0 | if (value.code.equals(code)) { |
59 | 0 | return value; |
60 | |
} |
61 | |
} |
62 | 0 | throw new IllegalArgumentException("Failed to locate the DelegationType with the given code: " + code); |
63 | |
} |
64 | |
|
65 | |
} |