1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.api.document; |
17 | |
|
18 | |
import org.kuali.rice.core.api.CoreConstants; |
19 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
20 | |
import org.w3c.dom.Element; |
21 | |
|
22 | |
import javax.xml.bind.annotation.XmlAccessType; |
23 | |
import javax.xml.bind.annotation.XmlAccessorType; |
24 | |
import javax.xml.bind.annotation.XmlAnyElement; |
25 | |
import javax.xml.bind.annotation.XmlElement; |
26 | |
import javax.xml.bind.annotation.XmlRootElement; |
27 | |
import javax.xml.bind.annotation.XmlType; |
28 | |
import java.util.Collection; |
29 | |
|
30 | |
@XmlRootElement(name = DocumentProcessingOptions.Constants.ROOT_ELEMENT_NAME) |
31 | |
@XmlAccessorType(XmlAccessType.NONE) |
32 | |
@XmlType(name = DocumentProcessingOptions.Constants.TYPE_NAME, propOrder = { |
33 | |
DocumentProcessingOptions.Elements.RUN_POST_PROCESSOR, |
34 | |
DocumentProcessingOptions.Elements.INDEX_SEARCH_ATTRIBUTES, |
35 | |
DocumentProcessingOptions.Elements.SEND_NOTIFICATIONS, |
36 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
37 | |
}) |
38 | |
public final class DocumentProcessingOptions extends AbstractDataTransferObject { |
39 | |
|
40 | |
@XmlElement(name = Elements.RUN_POST_PROCESSOR, required = true) |
41 | |
private final boolean runPostProcessor; |
42 | |
|
43 | |
@XmlElement(name = Elements.INDEX_SEARCH_ATTRIBUTES, required = true) |
44 | |
private final boolean indexSearchAttributes; |
45 | |
|
46 | |
@XmlElement(name = Elements.SEND_NOTIFICATIONS, required = true) |
47 | |
private final boolean sendNotifications; |
48 | |
|
49 | 0 | @SuppressWarnings("unused") |
50 | |
@XmlAnyElement |
51 | |
private final Collection<Element> _futureElements = null; |
52 | |
|
53 | |
private DocumentProcessingOptions() { |
54 | 0 | this(true, true, true); |
55 | 0 | } |
56 | |
|
57 | 0 | private DocumentProcessingOptions(boolean runPostProcessor, boolean indexSearchAttributes, boolean sendNotifications) { |
58 | 0 | this.runPostProcessor = runPostProcessor; |
59 | 0 | this.indexSearchAttributes = indexSearchAttributes; |
60 | 0 | this.sendNotifications = sendNotifications; |
61 | 0 | } |
62 | |
|
63 | |
public static DocumentProcessingOptions create(boolean runPostProcessor, boolean indexSearchAttributes) { |
64 | 0 | return create(runPostProcessor, indexSearchAttributes, true); |
65 | |
} |
66 | |
|
67 | |
public static DocumentProcessingOptions create(boolean runPostProcessor, boolean indexSearchAttributes, boolean sendNotifications) { |
68 | 0 | return new DocumentProcessingOptions(runPostProcessor, indexSearchAttributes, sendNotifications); |
69 | |
} |
70 | |
|
71 | |
public static DocumentProcessingOptions createDefault() { |
72 | 0 | return new DocumentProcessingOptions(); |
73 | |
} |
74 | |
|
75 | |
public boolean isRunPostProcessor() { |
76 | 0 | return runPostProcessor; |
77 | |
} |
78 | |
|
79 | |
public boolean isIndexSearchAttributes() { |
80 | 0 | return indexSearchAttributes; |
81 | |
} |
82 | |
|
83 | |
public boolean isSendNotifications() { |
84 | 0 | return sendNotifications; |
85 | |
} |
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | 0 | static class Constants { |
91 | |
final static String ROOT_ELEMENT_NAME = "documentProcessingOptions"; |
92 | |
final static String TYPE_NAME = "DocumentProcessingOptionsType"; |
93 | |
} |
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | 0 | static class Elements { |
99 | |
final static String RUN_POST_PROCESSOR = "runPostProcessor"; |
100 | |
final static String INDEX_SEARCH_ATTRIBUTES = "indexSearchAttributes"; |
101 | |
final static String SEND_NOTIFICATIONS = "sendNotifications"; |
102 | |
} |
103 | |
|
104 | |
} |