// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b01 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.08.22 at 11:20:46 AM CEST // package v2_0; import javax.xml.bind.annotation.*; /** * <p> * Java class for persistence-unit-transaction-type. * <p> * The following schema fragment specifies the expected content contained within * this class. * <p> * * <pre> * <simpleType name="persistence-unit-transaction-type"> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="JTA"/> * <enumeration value="RESOURCE_LOCAL"/> * </restriction> * </simpleType> * </pre> */ @XmlType(name = "persistence-unit-transaction-type") @XmlEnum public enum PersistenceUnitTransactionType { JTA, RESOURCE_LOCAL; public String value() { return name(); } public static PersistenceUnitTransactionType fromValue(String v) { return valueOf(v); } }