Package org.jboss.managed.api

Examples of org.jboss.managed.api.MutableManagedComponent


         if (name != null)
         {
            state = getComponentMappedState(comp, runtimeMO, name, runStateMapper);
            if (comp instanceof MutableManagedComponent)
            {
               MutableManagedComponent mcomp = MutableManagedComponent.class.cast(comp);
               mcomp.setRunState(state);
            }
         }
      }
      return state;
   }
View Full Code Here


         if (name != null)
         {
            state = getMappedState(name, runStateMapper);
            if (comp instanceof MutableManagedComponent)
            {
               MutableManagedComponent mcomp = MutableManagedComponent.class.cast(comp);
               mcomp.setRunState(state);
            }
         }
      }
      return state;
   }
View Full Code Here

TOP

Related Classes of org.jboss.managed.api.MutableManagedComponent

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.