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

org.jboss.dependency.spi.ControllerState 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.io.ObjectStreamException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

import org.jboss.util.JBossObject;
import org.jboss.util.JBossStringBuilder;

/**
 * Description of state.
 * 
 * @author Adrian Brock
 * @version $Revision: 75258 $
 */
public class ControllerState extends JBossObject implements Serializable
{
   private static final long serialVersionUID = 2L;

   /** Error */
   public static final ControllerState ERROR = new ControllerState("**ERROR**");

   /** Not installed state */
   public static final ControllerState NOT_INSTALLED = new ControllerState("Not Installed");

   /** Pre install state */
   public static final ControllerState PRE_INSTALL = new ControllerState("PreInstall");

   /** Described state */
   public static final ControllerState DESCRIBED = new ControllerState("Described");

   /** Instantiated state */
   public static final ControllerState INSTANTIATED = new ControllerState("Instantiated");

   /** Configured state */
   public static final ControllerState CONFIGURED = new ControllerState("Configured");

   /** Create state */
   public static final ControllerState CREATE = new ControllerState("Create");

   /** Start state */
   public static final ControllerState START = new ControllerState("Start");

   /** Installed state */
   public static final ControllerState INSTALLED = new ControllerState("Installed");

   /** The state string */
   protected final String stateString;

   private static Map values = new HashMap();

   static
   {
      values.put(ERROR.getStateString(), ERROR);
      values.put(NOT_INSTALLED.getStateString(), NOT_INSTALLED);
      values.put(PRE_INSTALL.getStateString(), PRE_INSTALL);
      values.put(DESCRIBED.getStateString(), DESCRIBED);
      values.put(INSTANTIATED.getStateString(), INSTANTIATED);
      values.put(CONFIGURED.getStateString(), CONFIGURED);
      values.put(CREATE.getStateString(), CREATE);
      values.put(START.getStateString(), START);
      values.put(INSTALLED.getStateString(), INSTALLED);
   }

   /**
    * Create a new state
    * 
    * @param stateString the string representation
    */
   public ControllerState(String stateString)
   {
      if (stateString == null)
         throw new IllegalArgumentException("Null state string");
      this.stateString = stateString;
   }
   
   /**
    * Get the state string
    * 
    * @return the state string
    */
   public String getStateString()
   {
      return stateString;
   }
   
   public boolean equals(Object object)
   {
      if (object == null || object instanceof ControllerState == false)
         return false;
      ControllerState other = (ControllerState) object;
      return stateString.equals(other.stateString);
   }
   
   public void toString(JBossStringBuilder buffer)
   {
      buffer.append(stateString);
   }

   public void toShortString(JBossStringBuilder buffer)
   {
      buffer.append(stateString);
   }

   protected int getHashCode()
   {
      return stateString.hashCode();
   }

   protected Object readResolve() throws ObjectStreamException
   {
      return values.get(stateString);   
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy