fish.focus.schema.movementrules.search.v1.TicketSearchKey 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.search.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TicketSearchKey.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="TicketSearchKey">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="TICKET_GUID"/>
* <enumeration value="ASSET_GUID"/>
* <enumeration value="RULE_GUID"/>
* <enumeration value="RULE_NAME"/>
* <enumeration value="RULE_RECIPIENT"/>
* <enumeration value="STATUS"/>
* <enumeration value="FROM_DATE"/>
* <enumeration value="TO_DATE"/>
* <enumeration value="UPDATED_BY"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TicketSearchKey")
@XmlEnum
public enum TicketSearchKey {
TICKET_GUID,
ASSET_GUID,
RULE_GUID,
RULE_NAME,
RULE_RECIPIENT,
STATUS,
FROM_DATE,
TO_DATE,
UPDATED_BY;
public String value() {
return name();
}
public static TicketSearchKey fromValue(String v) {
return valueOf(v);
}
}