package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSRoutingEngineV2Status. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="WSRoutingEngineV2Status"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="DEAD"/> * <enumeration value="STOPPED"/> * <enumeration value="SUSPENDED"/> * <enumeration value="RUNNING"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "WSRoutingEngineV2Status") @XmlEnum public enum WSRoutingEngineV2Status { DEAD, STOPPED, SUSPENDED, RUNNING; public String value() { return name(); } public static WSRoutingEngineV2Status fromValue(String v) { return valueOf(v); } }