Package org.jboss.dependency.spi.dispatch

Examples of org.jboss.dependency.spi.dispatch.LifecycleDispatchContext


      if (context == null)
         throw new IllegalArgumentException("No such context: " + name);

      if (context instanceof LifecycleDispatchContext)
      {
         LifecycleDispatchContext ldc = (LifecycleDispatchContext)context;
         ControllerState state = ldc.lifecycleInvocation(methodName, parameters, signature);
         if (state != null)
         {
            if (state.equals(context.getState()) == false)
               controller.change(context, state);
           
View Full Code Here

TOP

Related Classes of org.jboss.dependency.spi.dispatch.LifecycleDispatchContext

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.