Package de.danet.an.workflow.ejbs.admin

Examples of de.danet.an.workflow.ejbs.admin.ConfigurationHome


     */
    public ActivityFinder (String confHome) {
  synchronized (ActivityFinder.class) {
      if (handleCache == null || instIdCache == null) {
    try {
        ConfigurationHome ch
      = (ConfigurationHome)EJBUtil.lookupEJBHome
        (ConfigurationHome.class, confHome);
        Configuration conf
      = (Configuration)ch.findByPrimaryKey(new Integer(0));
        // first get all data ...
        Handle handle = conf.getHandle();
        String installationId = conf.workflowEngineInstanceKey();
        // ... now change all cached information
        // (prevents incomplete initialization)
View Full Code Here

TOP

Related Classes of de.danet.an.workflow.ejbs.admin.ConfigurationHome

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.