Package org.jboss.dependency.plugins

Examples of org.jboss.dependency.plugins.AbstractLifecycleCallbackItem


   }

   @Override
   public void addDependency(KernelControllerContext context)
   {
      AbstractLifecycleCallbackItem callback = new AbstractLifecycleCallbackItem(dependencyName, state, ControllerState.INSTALLED, installMethod, uninstallMethod);
      DependencyInfo di = context.getDependencyInfo();
      di.addLifecycleCallback(callback);

      super.addDependency(context);
   }
View Full Code Here


/* 62 */     return this.dependencyName.hashCode();
/*    */   }
/*    */
/*    */   public void addDependency(KernelControllerContext context)
/*    */   {
/* 67 */     AbstractLifecycleCallbackItem callback = new AbstractLifecycleCallbackItem(this.dependencyName, this.state, ControllerState.INSTALLED, this.installMethod, this.uninstallMethod);
/* 68 */     DependencyInfo di = context.getDependencyInfo();
/* 69 */     di.addLifecycleCallback(callback);
/*    */
/* 71 */     super.addDependency(context);
/*    */   }
View Full Code Here

      return dependencyName.hashCode();
   }

   public void addDependency(KernelControllerContext context)
   {
      AbstractLifecycleCallbackItem callback = new AbstractLifecycleCallbackItem(dependencyName, state, ControllerState.INSTALLED, installMethod, uninstallMethod);
      DependencyInfo di = context.getDependencyInfo();
      di.addLifecycleCallback(callback);

      super.addDependency(context);
   }
View Full Code Here

TOP

Related Classes of org.jboss.dependency.plugins.AbstractLifecycleCallbackItem

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.