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