You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by he...@apache.org on 2005/02/16 06:40:28 UTC

svn commit: r153998 - in webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis: Constants.java engine/Constants.java

Author: hemapani
Date: Tue Feb 15 21:40:25 2005
New Revision: 153998

URL: http://svn.apache.org/viewcvs?view=rev&rev=153998
Log:
claen up the code

Added:
    webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/Constants.java
Removed:
    webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/engine/Constants.java

Added: webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/Constants.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/Constants.java?view=auto&rev=153998
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/Constants.java (added)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/Constants.java Tue Feb 15 21:40:25 2005
@@ -0,0 +1,36 @@
+/*
+ * Copyright 2003,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.axis;
+
+public class Constants {
+    public static final int SOAP_STYLE_RPC_ENCODED = 1000;
+    public static final int SOAP_STYLE_RPC_LITERAL = 1001;
+    public static final int SOAP_STYLE_DOC_LITRAL_WRAPPED = 1002;
+
+    public static final String APPLICATION_SCOPE = "application";
+    public static final String SESSION_SCOPE = "session";
+    public static final String GLOBAL_SCOPE = "global";
+
+    public static final String PHASE_SERVICE = "service";
+    public static final String PHASE_TRANSPORT = "transport";
+    public static final String PHASE_GLOBAL = "global";
+
+    public static final String SESSION_CONTEXT_PROPERTY = "SessionContext";
+
+    public static final String TRANSPORT_TCP = "tcp";
+    public static final String TRANSPORT_HTTP = "http";
+
+}