KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > deployment > DeploymentConstants


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
17 package org.apache.axis2.deployment;
18
19 /**
20  * DeployCons interface is to keep constent value required for Deployemnt
21  */

22 public interface DeploymentConstants {
23     int SERVICE = 0; // if it is a servise
24
int MODULE = 1; // if it is a module
25

26     String JavaDoc SERVICEXML = "META-INF/service.xml";
27     String JavaDoc SERVICEWSDL = "META-INF/service.wsdl";
28     String JavaDoc MODULEXML = "META-INF/module.xml";
29     String JavaDoc PARAMETERST = "parameter";// paramater start tag
30
String JavaDoc HANDERST = "handler";
31     String JavaDoc MODULEST = "module";
32     String JavaDoc PHASEST = "phase";
33     String JavaDoc PHASE_ORDER = "phaseOrder";
34     String JavaDoc TYPEMAPPINGST = "typeMapping";// typeMapping start tag
35
String JavaDoc BEANMAPPINGST = "beanMapping";// beanMapping start tag
36
String JavaDoc OPRATIONST = "operation";// operation start tag
37
String JavaDoc INFLOWST = "inflow";// inflow start tag
38
String JavaDoc OUTFLOWST = "outflow";// outflowr start tag
39
String JavaDoc IN_FAILTFLOW = "INfaultflow";// faultflow start tag
40
String JavaDoc OUT_FAILTFLOW = "Outfaultflow";// faultflow start tag
41

42     // String FOLDE_NAME = "D:/Axis 2.0/projects/Deployement/test-data";
43
String JavaDoc MODULE_PATH = "/modules/";
44     String JavaDoc SERVICE_PATH = "/services/";
45
46     // for jws file extension
47
String JavaDoc JWS_EXTENSION = ".jws";
48
49     String JavaDoc SERVICETAG = "service";
50     String JavaDoc AXIS2CONFIG = "axisconfig";
51
52     // for serviemetadat
53
String JavaDoc PROVIDERNAME = "provider";
54     String JavaDoc STYLENAME = "style";
55     String JavaDoc CONTEXTPATHNAME = "contextPath";
56
57     // for parameters
58
String JavaDoc ATTNAME = "name";
59     String JavaDoc ATTLOCKED = "locked";
60     String JavaDoc TYPE = "type";
61
62     // for operatiins
63
String JavaDoc ATQNAME = "name";
64     String JavaDoc ATUSE = "use";
65     String JavaDoc MEP = "mep";
66
67     //for handlers
68
String JavaDoc REF = "ref";
69     String JavaDoc CLASSNAME = "class";
70     String JavaDoc BEFORE = "before";
71     String JavaDoc AFTER = "after";
72     String JavaDoc PHASE = "phase";
73     String JavaDoc PHASEFIRST = "phaseFirst";
74     String JavaDoc PHASELAST = "phaseLast";
75     String JavaDoc ORDER = "order"; // to resolve the order tag
76
String JavaDoc DESCRIPTION = "description";
77
78     String JavaDoc TRANSPORTSTAG = "transports";
79     String JavaDoc TRANSPORTTAG = "transport";
80     String JavaDoc TRANSPORTSENDER = "transportSender";
81     String JavaDoc TRANSPORTRECEIVER = "transportReceiver";
82
83     String JavaDoc MESSAGERECEIVER = "messageReceiver";
84
85
86     String JavaDoc HOTDEPLOYMENT = "hotdeployment";
87     String JavaDoc HOTUPDATE = "hotupdate";
88
89
90 }
91
Popular Tags