org.jboss.dependency.spi.ControllerMode Maven / Gradle / Ivy
/*
* 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 org.jboss.util.JBossStringBuilder;
import org.jboss.xb.annotations.JBossXmlEnum;
/**
* Mode of the context.
*
* @author Adrian Brock
* @version $Revision: 71416 $
*/
@JBossXmlEnum(ignoreCase=true)
public enum ControllerMode
{
AUTOMATIC("Automatic"),
ON_DEMAND("On Demand"),
MANUAL("Manual"),
DISABLED("Disabled"),
ASYNCHRONOUS("Asynchronous");
/** The mode string */
private final String modeString;
/**
* Create a new mode
*
* @param modeString the mode representation
*/
private ControllerMode(String modeString)
{
if (modeString == null)
throw new IllegalArgumentException("Null mode string");
this.modeString = modeString;
}
// TODO - remove this once JBMICROCONT-219 is done
public static ControllerMode getInstance(String modeString)
{
if (modeString == null)
throw new IllegalArgumentException("Null mode string.");
for(ControllerMode cm : values())
{
if (modeString.equalsIgnoreCase(cm.getModeString()))
return cm;
}
throw new IllegalArgumentException("No such controller mode: " + modeString);
}
/**
* Get the mode string
*
* @return the mdoe string
*/
public String getModeString()
{
return modeString;
}
public void toString(JBossStringBuilder buffer)
{
buffer.append(modeString);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy