KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > webservice > Constants


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.webservice;
8
9 // $Id: Constants.java,v 1.4.2.2 2005/06/17 22:33:05 tdiesler Exp $
10

11 import javax.xml.namespace.QName JavaDoc;
12
13 /**
14  * Constants for JBoss ws4ee webservices.
15  *
16  * @author Thomas.Diesler@jboss.org
17  * @since 27-April-2004
18  */

19 public interface Constants
20 {
21    /** The default WS4EE namespace uri */
22    String JavaDoc NAMESPACE = "http://webservice.jboss.com/ws4ee";
23    /** The Axis client engine config system property: org.jboss.ws4ee.client.config */
24    String JavaDoc CLIENT_CONFIG = "org.jboss.ws4ee.client.config";
25    /** The Axis server engine config system property: org.jboss.ws4ee.server.config */
26    String JavaDoc SERVER_CONFIG = "org.jboss.ws4ee.server.config";
27    
28    // The property name of the handler chain in the message context
29
String JavaDoc HANDLER_CHAIN = new QName JavaDoc(NAMESPACE, "HANDLER_CHAIN").toString();
30    // The property name of the last fault in the message context
31
String JavaDoc LAST_FAULT = new QName JavaDoc(NAMESPACE, "LAST_FAULT").toString();
32 }
33
Popular Tags