Examples of WfActivityHome


Examples of de.danet.an.workflow.ejbs.core.WfActivityHome

     * from the ActivityBean.
     */
    public void activityFindByProcess() throws Exception {
  InitialContext ic = new InitialContext();
  Object objref = ic.lookup("ActivityBean");
  WfActivityHome home
      = (WfActivityHome)PortableRemoteObject.narrow
      (objref, WfActivityHome.class);
  assertTrue (home != null);
  Collection c = home.findByProcess(new Long(1));
  assertTrue (c != null);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.