| java.lang.Object org.jboss.ejb.EjbUtil
EjbUtil | final public class EjbUtil (Code) | | Utility methods for resolving ejb-ref and ejb-local-ref within the
scope of a deployment.
author: Christian Riege author: Scott.Stark@jboss.org version: $Revision: 57209 $ |
Method Summary | |
public static String | findEjbLink(MBeanServer server, DeploymentInfo di, String link) Resolves an <ejb-link> target for an <ejb-ref> entry and
returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <ejb-link> entry. | public static String | findLocalEjbLink(MBeanServer server, DeploymentInfo di, String link) Resolves an <ejb-link> target for an <ejb-local-ref> entry
and returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <ejb-link> entry. | public static MessageDestinationMetaData | findMessageDestination(MBeanServer server, DeploymentInfo di, String link) Resolves a <message-destination> target for a <message-destination-link>
entry and returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <message-driven-link> entry. |
findEjbLink | public static String findEjbLink(MBeanServer server, DeploymentInfo di, String link)(Code) | | Resolves an <ejb-link> target for an <ejb-ref> entry and
returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <ejb-link> entry. The JNDI Entry of the target bean; null ifno appropriate target could be found. |
findLocalEjbLink | public static String findLocalEjbLink(MBeanServer server, DeploymentInfo di, String link)(Code) | | Resolves an <ejb-link> target for an <ejb-local-ref> entry
and returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <ejb-link> entry. The JNDI Entry of the target bean; null ifno appropriate target could be found. |
findMessageDestination | public static MessageDestinationMetaData findMessageDestination(MBeanServer server, DeploymentInfo di, String link)(Code) | | Resolves a <message-destination> target for a <message-destination-link>
entry and returns the name of the target in the JNDI tree.
Parameters: di - DeploymentInfo Parameters: link - Content of the <message-driven-link> entry. The JNDI Entry of the target; null ifno appropriate target could be found. |
|
|