/** * Set the specified local EJBs in the naming context. */ public void addLocalEjb( @SuppressWarnings("unused") ContextLocalEjb localEjb) { // NO-OP }
/** * Set the specified local EJBs in the naming context. */ public void addLocalEjb(@SuppressWarnings("unused") ContextLocalEjb localEjb) { // NO-OP }
public void addLocalEjb(ContextLocalEjb ejb) { }
public ContextLocalEjb findLocalEjb(String name) { return null; }
public ContextLocalEjb[] findLocalEjbs() { return null; }
/** * Add a local EJB resource reference for this web application. * * @param ejb New EJB resource reference */ public void addLocalEjb(ContextLocalEjb ejb) { namingResources.addLocalEjb(ejb); fireContainerEvent("addLocalEjb", ejb.getName()); }
/** * Set the specified local EJBs in the naming context. */ public void addLocalEjb(ContextLocalEjb localEjb) { }
/** * Add a local EJB resource reference for this web application. * * @param ejb New local EJB resource reference */ public void addLocalEjb(ContextLocalEjb ejb);
/** * Return the local EJB resource reference with the specified name, if any; * otherwise, return <code>null</code>. * * @param name Name of the desired EJB resource reference */ public ContextLocalEjb findLocalEjb(String name);
/** * Return the defined local EJB resource references for this application. * If there are none, a zero-length array is returned. */ public ContextLocalEjb[] findLocalEjbs();
/** * Return the defined local EJB resource references for this application. * If there are none, a zero-length array is returned. */ public ContextLocalEjb[] findLocalEjbs() { return namingResources.findLocalEjbs(); }
/** * Return the local EJB resource reference with the specified name, if any; * otherwise, return <code>null</code>. * * @param name Name of the desired EJB resource reference */ public ContextLocalEjb findLocalEjb(String name) { return namingResources.findLocalEjb(name); }