All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.dependency.spi.ControllerContext Maven / Gradle / Ivy

The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.dependency.spi;

import java.util.Set;

import org.jboss.util.JBossInterface;

/**
 * Information about a context.
 * 
 * @author Adrian Brock
 * @version $Revision: 71354 $
 */
public interface ControllerContext extends JBossInterface
{
   /**
    * Get the name
    * 
    * @return the name
    */
   Object getName();

   /**
    * The aliases
    * 
    * @return the aliases or null if there are no aliases
    */
   Set getAliases();
   
   /**
    * Get the dependency information
    * 
    * @return the dependency information
    */
   DependencyInfo getDependencyInfo();
   
   /**
    * Get the scope information
    * 
    * @return the scope information
    */
   ScopeInfo getScopeInfo();
   
   /**
    * Get any target
    * 
    * @return the target
    */
   Object getTarget();
   
   /**
    * Get the controller
    * 
    * @return the controller
    */
   Controller getController();
   
   /**
    * Set the controller
    * 
    * @param controller the controller
    */
   void setController(Controller controller);

   /**
    * Install
    * 
    * @param fromState the old state
    * @param toState the new state
    * @throws Throwable for any error
    */
   void install(ControllerState fromState, ControllerState toState) throws Throwable;

   /**
    * Uninstall
    * 
    * @param fromState the old state
    * @param toState the new state
    */
   void uninstall(ControllerState fromState, ControllerState toState);

   /**
    * Get the state
    * 
    * @return the state
    */
   ControllerState getState();
   
   /**
    * Set the state
    * 
    * @param state the state
    */
   void setState(ControllerState state);

   /**
    * Get the required state
    * 
    * @return the required state
    */
   ControllerState getRequiredState();

   /**
    * Set the required state
    * 
    * @param state the required state
    */
   void setRequiredState(ControllerState state);

   /**
    * Get the mode
    * 
    * @return the mode
    */
   ControllerMode getMode();

   /**
    * Set the mode
    * 
    * @param mode the mode
    */
   void setMode(ControllerMode mode);

   /**
    * Get the error handling mode.
    *
    * @return the error handling mode
    */
   ErrorHandlingMode getErrorHandlingMode();

   /**
    * Get the error
    * 
    * @return the error
    */
   Throwable getError();
   
   /**
    * Set the error
    * 
    * @param error the error
    */
   void setError(Throwable error);
}