Package org.jboss.test.refs.common

Examples of org.jboss.test.refs.common.EjbLinkIF


   }

   public void callOne() throws Exception
   {
      Object obj = ServiceLocator.lookup(BEAN1_REF_NAME);
      EjbLinkIF bean1 = (EjbLinkIF) obj;
      bean1.call();
   }
View Full Code Here


   }

   public void callThree() throws Exception
   {
      Object obj = ServiceLocator.lookup(BEAN3_REF_NAME);
      EjbLinkIF bean3 = (EjbLinkIF) obj;
      bean3.call();
   }
View Full Code Here

        throw new IllegalStateException("Cannot call local bean3 from bean1");
    }

    public void callTwo() throws Exception {
        Object obj = ServiceLocator.lookup(BEAN2_REF_NAME);
        EjbLinkIF bean2 = (EjbLinkIF) obj;
        bean2.call();
    }
View Full Code Here

   }

   public void callOne() throws Exception
   {
      Object obj = ServiceLocator.lookup(BEAN1_REF_NAME);
      EjbLinkIF bean1 = (EjbLinkIF) obj;
      bean1.call();
   }
View Full Code Here

   }

   public void callThree() throws Exception
   {
      Object obj = ServiceLocator.lookup(BEAN3_REF_NAME);
      EjbLinkIF bean3 = (EjbLinkIF) obj;
      bean3.call();
   }
View Full Code Here

        throw new IllegalStateException("Cannot call local bean3 from bean1");
    }

    public void callTwo() throws Exception {
        Object obj = ServiceLocator.lookup(BEAN2_REF_NAME);
        EjbLinkIF bean2 = (EjbLinkIF) obj;
        bean2.call();
    }
View Full Code Here

TOP

Related Classes of org.jboss.test.refs.common.EjbLinkIF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.