Yep that is the price you pay for detyping, no runtime compilation checks
marcf |-----Original Message----- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Dr. |Christoph Georg Jung |Sent: Thursday, February 28, 2002 12:01 AM |To: [EMAIL PROTECTED] |Subject: [JBoss-dev] CVS update: |contrib/jboss.net/src/main/org/jboss/net Constants.java | | | User: cgjung | Date: 02/02/28 00:01:27 | | Modified: jboss.net/src/main/org/jboss/net Constants.java | Log: | runtime MBean invocations work again (detyped JMX is a pain!). Security | tests removed, because hello bean does not support them anymore. | | Revision Changes Path | 1.2 +6 -4 |contrib/jboss.net/src/main/org/jboss/net/Constants.java | | Index: Constants.java | =================================================================== | RCS file: |/cvsroot/jboss/contrib/jboss.net/src/main/org/jboss/net/Constants.java,v | retrieving revision 1.1 | retrieving revision 1.2 | diff -u -r1.1 -r1.2 | --- Constants.java 7 Feb 2002 09:49:31 -0000 1.1 | +++ Constants.java 28 Feb 2002 08:01:27 -0000 1.2 | @@ -5,7 +5,7 @@ | * See terms of license at gnu.org. | */ | | -// $Id: Constants.java,v 1.1 2002/02/07 09:49:31 cgjung Exp $ | +// $Id: Constants.java,v 1.2 2002/02/28 08:01:27 cgjung Exp $ | | package org.jboss.net; | | @@ -13,14 +13,16 @@ | * Some Constants for the axis package | * @author <a href="mailto:[EMAIL PROTECTED]">Christoph |G. Jung</a> | * @created 28. September 2001 | - * @version $Revision: 1.1 $ | + * @version $Revision: 1.2 $ | */ | | public interface Constants { | | static final String INIT_METHOD_NAME="init"; | - static final String DEPLOY_METHOD_NAME="deploy"; | - static final String UNDEPLOY_METHOD_NAME="undeploy"; | + static final String CREATE_METHOD_NAME="create"; | + static final String START_METHOD_NAME="start"; | + static final String STOP_METHOD_NAME="stop"; | + static final String DESTROY_METHOD_NAME="stop"; | static final String STRING_CLASS_NAME="java.lang.String"; | static final String |DEPLOYMENT_INFO_CLASS_NAME="org.jboss.deployment.DeploymentInfo"; | | | | | |_______________________________________________ |Jboss-development mailing list |[EMAIL PROTECTED] |https://lists.sourceforge.net/lists/listinfo/jboss-development _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
