KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
10  * MBean interface.
11  * @since 27-April-2004
12  */

13 public interface ServiceClientDeployerMBean extends org.jboss.system.ServiceMBean
14 {
15
16    //default object name
17
public static final javax.management.ObjectName JavaDoc OBJECT_NAME = org.jboss.mx.util.ObjectNameFactory
18          .create("jboss.ws4ee:service=ServiceClientDeployer");
19
20    /**
21     * This binds a jaxrpc Service into the callers ENC for every service-ref element
22     * @param envCtx ENC to bind the javax.rpc.xml.Service object to
23     * @param serviceRefs An iterator of the service-ref elements in the client deployment descriptor
24     * @param di The client's deployment info
25     * @throws org.jboss.deployment.DeploymentException if it goes wrong
26     */

27    void setupServiceRefEnvironment(javax.naming.Context JavaDoc envCtx, java.util.Iterator JavaDoc serviceRefs,
28          org.jboss.deployment.DeploymentInfo di) throws org.jboss.deployment.DeploymentException;
29
30 }
31
Popular Tags