stevel 2003/01/08 23:26:56
Modified: java/src/org/apache/axis Constants.java
Log:
constanted two log names, and moved the static final definition of .jws in here.
Revision Changes Path
1.106 +17 -0 xml-axis/java/src/org/apache/axis/Constants.java
Index: Constants.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/Constants.java,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- Constants.java 7 Jan 2003 19:41:57 -0000 1.105
+++ Constants.java 9 Jan 2003 07:26:56 -0000 1.106
@@ -118,6 +118,16 @@
// be nothing more than a nuisance.
public static final String ENTERPRISE_LOG_CATEGORY =
"org.apache.axis.enterprise";
+ /**
+ * time logged stuff
+ */
+ public static final String TIME_LOG_CATEGORY = "org.apache.axis.TIME";
+
+ /**
+ * servlet exceptions. Axis faults are logged at debug level here.
+ */
+ public static final String EXCEPTION_LOG_CATEGORY =
"org.apache.axis.EXCEPTIONS";
+
/** The name of the field which accepts xsd:any content in Beans */
public static final String ANYCONTENT = "_any";
@@ -641,4 +651,11 @@
// When invoked from a servlet, per JAX-RPC, we need a
// ServletEndpointContext object. This is where it lives.
public static final String MC_SERVLET_ENDPOINT_CONTEXT =
"servletEndpointContext";
+
+ /**
+ * what the extension of JWS files is. If changing this, note that
+ * AxisServlet has an xdoclet declaration in the class javadocs that
+ * also needs updating.
+ */
+ public static final String JWS_DEFAULT_FILE_EXTENSION = ".jws";
}