KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > phaseresolver > PhaseMetadata


1 /*
2 * Copyright 2004,2005 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */

16 package org.apache.axis2.phaseresolver;
17
18
19 /**
20  * Class PhaseMetadata
21  */

22 public class PhaseMetadata {
23
24     public static final int IN_FLOW = 1;
25     public static final int OUT_FLOW = 2;
26     public static final int FAULT_IN_FLOW = 3;
27     public static final int FAULT_OUT_FLOW = 4;
28
29     //INFLOW
30
public static final String JavaDoc PHASE_TRANSPORTIN = "TransportIn";
31     public static final String JavaDoc PHASE_PRE_DISPATCH = "PreDispatch";
32     public static final String JavaDoc PHASE_DISPATCH = "Dispatch";
33     public static final String JavaDoc PHASE_POST_DISPATCH = "PostDispatch";
34     public static final String JavaDoc PHASE_POLICY_DETERMINATION = "PolicyDetermination";
35     public static final String JavaDoc PHASE_MESSAGE_PROCESSING = "MessageProcessing";
36
37     //OUTFLOW
38
public static final String JavaDoc PHASE_MESSAGE_OUT = "MessageOut";
39     public static final String JavaDoc PHASE_TRANSPORT_OUT = "MessageOut";
40     /**
41      * todo I think thi shas to be change
42      * All the handlers inside transportsender and TranportRecievre in axis2.xml gose
43      * to this phase
44      */

45     public static final String JavaDoc TRANSPORT_PHASE = "TRANSPORT";
46
47
48 }
49
Popular Tags