Package org.hibernate.boot.jaxb.mapping
Class JaxbUuidGenerator
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbUuidGenerator
-
- All Implemented Interfaces:
Serializable
public class JaxbUuidGenerator extends Object implements Serializable
See `@org.hibernate.annotations.UuidGenerator`Java class for uuid-generator complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="uuid-generator"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="style" use="required" type="{http://www.hibernate.org/xsd/orm/mapping}uuid-generator-style" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected UuidGenerator.Stylestyle
-
Constructor Summary
Constructors Constructor Description JaxbUuidGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UuidGenerator.StylegetStyle()Gets the value of the style property.voidsetStyle(UuidGenerator.Style value)Sets the value of the style property.
-
-
-
Field Detail
-
style
protected UuidGenerator.Style style
-
-
Method Detail
-
getStyle
public UuidGenerator.Style getStyle()
Gets the value of the style property.- Returns:
- possible object is
String
-
setStyle
public void setStyle(UuidGenerator.Style value)
Sets the value of the style property.- Parameters:
value- allowed object isString
-
-