KickJava   Java API By Example, From Geeks To Geeks.

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


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

7
8 // $Id: Constants.java,v 1.3 2004/03/26 03:56:36 starksm Exp $
9

10 package org.jboss.net;
11
12 /**
13  * Some Constants for the axis package
14  * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
15  * @created 28. September 2001
16  * @version $Revision: 1.3 $
17  */

18
19 public interface Constants
20 {
21
22    static final String JavaDoc INIT_METHOD_NAME = "init";
23    static final String JavaDoc CREATE_METHOD_NAME = "create";
24    static final String JavaDoc START_METHOD_NAME = "start";
25    static final String JavaDoc STOP_METHOD_NAME = "stop";
26    static final String JavaDoc DESTROY_METHOD_NAME = "stop";
27    static final String JavaDoc STRING_CLASS_NAME = "java.lang.String";
28    static final String JavaDoc DEPLOYMENT_INFO_CLASS_NAME = "org.jboss.deployment.DeploymentInfo";
29
30 }
Popular Tags