1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
package org.mule.module.cxf; |
12 | |
|
13 | 0 | public class CxfConstants |
14 | |
{ |
15 | |
public static final String JAX_WS_FRONTEND = "jaxws"; |
16 | |
public static final String SIMPLE_FRONTEND = "simple"; |
17 | |
public static final String OPERATION = "operation"; |
18 | |
public static final String MTOM_ENABLED = "mtomEnabled"; |
19 | |
|
20 | |
public static final String CXF_OUTBOUND_MESSAGE_PROCESSOR = "cxf_outbound_message_processor"; |
21 | |
public static final String MULE_EVENT = "mule.event"; |
22 | |
|
23 | |
public static final String ATTACHMENTS = "cxf_attachments"; |
24 | |
public static final String INBOUND_SERVICE= "cxf_service"; |
25 | |
public static final String INBOUND_OPERATION= "cxf_operation"; |
26 | |
public static final String ENABLE_MULE_SOAP_HEADERS = "enableMuleSoapHeaders"; |
27 | |
|
28 | |
public static final String PAYLOAD = "payload"; |
29 | |
public static final String PAYLOAD_BODY = "body"; |
30 | |
public static final String PAYLOAD_ENVELOPE = "envelope"; |
31 | |
|
32 | |
public static final String PAYLOAD_TO_ARGUMENTS = "payloadToArguments"; |
33 | |
public static final String PAYLOAD_TO_ARGUMENTS_NULL_PAYLOAD_AS_PARAMETER = "nullPayloadAsParameter"; |
34 | |
public static final String PAYLOAD_TO_ARGUMENTS_NULL_PAYLOAD_AS_VOID = "nullPayloadAsVoid"; |
35 | |
public static final String PAYLOAD_TO_ARGUMENTS_BY_DEFAULT = PAYLOAD_TO_ARGUMENTS_NULL_PAYLOAD_AS_PARAMETER; |
36 | |
public static final String DEFAULT_CXF_CONFIGURATION = "_cxfConfiguration"; |
37 | |
|
38 | |
public static final String DATA_BINDING = "databinding"; |
39 | |
public static final String FEATURES = "features"; |
40 | |
public static final String IN_INTERCEPTORS = "inInterceptors"; |
41 | |
public static final String IN_FAULT_INTERCEPTORS = "inFaultInterceptors"; |
42 | |
public static final String OUT_INTERCEPTORS = "outInterceptors"; |
43 | |
public static final String OUT_FAULT_INTERCEPTORS = "outFaultInterceptors"; |
44 | |
} |