01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19:
20: package org.apache.axis2.description;
21:
22: public interface DescriptionConstants {
23:
24: /**
25: * Field EXECUTION_CHAIN_KEY
26: */
27: public static final String EXECUTION_CHAIN_KEY = "EXECUTION_CHAIN_KEY";
28:
29: /**
30: * Field EXECUTION_OUT_CHAIN_KEY
31: */
32: public static final String EXECUTION_OUT_CHAIN_KEY = "EXECUTION_OUT_CHAIN_KEY";
33:
34: /**
35: * Field EXECUTION_FAULT_CHAIN_KEY
36: */
37: public static final String EXECUTION_FAULT_CHAIN_KEY = "EXECUTION_FAULT_CHAIN_KEY";
38:
39: /**
40: * Field MODULEREF_KEY
41: */
42: public static final String MODULEREF_KEY = "MODULEREF_KEY";
43:
44: /**
45: * Field OPERATION_KEY
46: */
47: public static final String OPERATION_KEY = "OPERATION_KEY";
48:
49: /**
50: * Field MESSAGE_RECEIVER_KEY
51: */
52: public static final String MESSAGE_RECEIVER_KEY = "PROVIDER_KEY";
53:
54: /**
55: * Field CONTEXTPATH_KEY
56: */
57: public static final String CONTEXTPATH_KEY = "CONTEXTPATH_KEY";
58:
59: /**
60: * Field CLASSLOADER_KEY
61: */
62: public static final String CLASSLOADER_KEY = "CLASSLOADER_KEY";
63:
64: /**
65: * Field STYLE_KEY
66: */
67: public static final String STYLE_KEY = "STYLE_KEY";
68:
69: /**
70: * Field SERVICE_CLASS_NAME
71: */
72: public static final String SERVICE_CLASS_NAME = "SERVICE_CLASS_NAME";
73:
74: /**
75: * Field PHASES_KEY
76: */
77: public static final String PHASES_KEY = "PHASES_KEY";
78:
79: /**
80: * Field PARAMETER_KEY
81: */
82: public static final String PARAMETER_KEY = "PARAMETER_KEY";
83: public static final String OUT_FAULTFLOW_KEY = "OUT_FAULTFLOW_KEY";
84:
85: /**
86: * Field OUTFLOW_KEY
87: */
88: public static final String OUTFLOW_KEY = "OUTFLOW_KEY";
89:
90: /**
91: * Field IN_FAULTFLOW_KEY
92: */
93: public static final String IN_FAULTFLOW_KEY = "IN_FAULTFLOW_KEY";
94:
95: /**
96: * Field INFLOW_KEY
97: */
98: public static final String INFLOW_KEY = "INFLOW_KEY";
99: }
|