fish.focus.schema.movementrules.module.v1.RulesModuleMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of movement-rules-model Show documentation
Show all versions of movement-rules-model Show documentation
This module shall have interfaces, XSD, and DTOs
The newest version!
package fish.focus.schema.movementrules.module.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RulesModuleMethod.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="RulesModuleMethod">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="SET_MOVEMENT_REPORT"/>
* <enumeration value="PING"/>
* <enumeration value="GET_TICKETS_AND_RULES_BY_MOVEMENTS"/>
* <enumeration value="EVALUATE_RULES"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RulesModuleMethod")
@XmlEnum
public enum RulesModuleMethod {
SET_MOVEMENT_REPORT,
PING,
GET_TICKETS_AND_RULES_BY_MOVEMENTS,
EVALUATE_RULES;
public String value() {
return name();
}
public static RulesModuleMethod fromValue(String v) {
return valueOf(v);
}
}