Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmBaseVersionAttributeType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmBaseVersionAttributeType
-
- All Implemented Interfaces:
Serializable
,ToolingHintContainer
- Direct Known Subclasses:
JaxbHbmTimestampAttributeType
,JaxbHbmVersionAttributeType
public abstract class JaxbHbmBaseVersionAttributeType extends JaxbHbmToolingHintContainer implements Serializable
Type definition that acts as a base for concrete definitions of mapped attributes that can function as the basis of optimistic locking.Java class for BaseVersionAttributeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BaseVersionAttributeType"> <complexContent> <extension base="{http://www.hibernate.org/xsd/orm/hbm}ToolingHintContainer"> <attribute name="access" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="generated" type="{http://www.hibernate.org/xsd/orm/hbm}GenerationTimingVersionEnum" default="never" /> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="node" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
access
protected String
columnAttribute
protected GenerationTiming
generated
protected String
name
protected String
node
-
Fields inherited from class org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
toolingHints
-
-
Constructor Summary
Constructors Constructor Description JaxbHbmBaseVersionAttributeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAccess()
Gets the value of the access property.String
getColumnAttribute()
Gets the value of the columnAttribute property.GenerationTiming
getGenerated()
Gets the value of the generated property.String
getName()
Gets the value of the name property.String
getNode()
Gets the value of the node property.void
setAccess(String value)
Sets the value of the access property.void
setColumnAttribute(String value)
Sets the value of the columnAttribute property.void
setGenerated(GenerationTiming value)
Sets the value of the generated property.void
setName(String value)
Sets the value of the name property.void
setNode(String value)
Sets the value of the node property.-
Methods inherited from class org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
getToolingHints
-
-
-
-
Field Detail
-
access
protected String access
-
columnAttribute
protected String columnAttribute
-
generated
protected GenerationTiming generated
-
name
protected String name
-
node
protected String node
-
-
Method Detail
-
getAccess
public String getAccess()
Gets the value of the access property.- Returns:
- possible object is
String
-
setAccess
public void setAccess(String value)
Sets the value of the access property.- Parameters:
value
- allowed object isString
-
getColumnAttribute
public String getColumnAttribute()
Gets the value of the columnAttribute property.- Returns:
- possible object is
String
-
setColumnAttribute
public void setColumnAttribute(String value)
Sets the value of the columnAttribute property.- Parameters:
value
- allowed object isString
-
getGenerated
public GenerationTiming getGenerated()
Gets the value of the generated property.- Returns:
- possible object is
String
-
setGenerated
public void setGenerated(GenerationTiming value)
Sets the value of the generated property.- Parameters:
value
- allowed object isString
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getNode
public String getNode()
Gets the value of the node property.- Returns:
- possible object is
String
-
-