Package org.jboss.dependency.plugins.spi.action

Examples of org.jboss.dependency.plugins.spi.action.ControllerContextAction


      this.actions = actions;
   }
  
   public void install(ControllerContext context, ControllerState fromState, ControllerState toState) throws Throwable
   {
      ControllerContextAction action = getAction(context, toState);
      if (action != null)
         action.install(context);
   }
View Full Code Here


         action.install(context);
   }

   public void uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
   {
      ControllerContextAction action = getAction(context, fromState);
      if (action != null)
         action.uninstall(context);
   }
View Full Code Here

      this.actions = actions;
   }
  
   public void install(ControllerContext context, ControllerState fromState, ControllerState toState) throws Throwable
   {
      ControllerContextAction action = getAction(context, toState);
      if (action != null)
         action.install(context);
   }
View Full Code Here

         action.install(context);
   }

   public void uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
   {
      ControllerContextAction action = getAction(context, fromState);
      if (action != null)
         action.uninstall(context);
   }
View Full Code Here

TOP

Related Classes of org.jboss.dependency.plugins.spi.action.ControllerContextAction

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.