Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmPropertiesType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmPropertiesType
-
- All Implemented Interfaces:
Serializable
public class JaxbHbmPropertiesType extends Object implements Serializable
properties declares that the contained properties form an alternate key. The name attribute allows an alternate key to be used as the target of a property-ref.Java class for properties-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="properties-type"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element name="property" type="{http://www.hibernate.org/xsd/orm/hbm}BasicAttributeType"/> <element name="many-to-one" type="{http://www.hibernate.org/xsd/orm/hbm}ManyToOneType"/> <element name="component" type="{http://www.hibernate.org/xsd/orm/hbm}CompositeAttributeType"/> <element name="dynamic-component" type="{http://www.hibernate.org/xsd/orm/hbm}dynamic-component-type"/> </choice> </sequence> <attribute name="insert" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="node" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="optimistic-lock" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> <attribute name="unique" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="update" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Serializable>attributesprotected Booleaninsertprotected Stringnameprotected Stringnodeprotected BooleanoptimisticLockprotected Booleanuniqueprotected Booleanupdate
-
Constructor Summary
Constructors Constructor Description JaxbHbmPropertiesType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Serializable>getAttributes()Gets the value of the attributes property.StringgetName()Gets the value of the name property.StringgetNode()Gets the value of the node property.booleanisInsert()Gets the value of the insert property.booleanisOptimisticLock()Gets the value of the optimisticLock property.booleanisUnique()Gets the value of the unique property.booleanisUpdate()Gets the value of the update property.voidsetInsert(Boolean value)Sets the value of the insert property.voidsetName(String value)Sets the value of the name property.voidsetNode(String value)Sets the value of the node property.voidsetOptimisticLock(Boolean value)Sets the value of the optimisticLock property.voidsetUnique(Boolean value)Sets the value of the unique property.voidsetUpdate(Boolean value)Sets the value of the update property.
-
-
-
Method Detail
-
getAttributes
public List<Serializable> getAttributes()
Gets the value of the attributes property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the attributes property.For example, to add a new item, do as follows:
getAttributes().add(newItem);Objects of the following type(s) are allowed in the list
JaxbHbmBasicAttributeTypeJaxbHbmCompositeAttributeTypeJaxbHbmDynamicComponentTypeJaxbHbmManyToOneType- Returns:
- The value of the attributes property.
-
isInsert
public boolean isInsert()
Gets the value of the insert property.- Returns:
- possible object is
Boolean
-
setInsert
public void setInsert(Boolean value)
Sets the value of the insert property.- Parameters:
value- allowed object isBoolean
-
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
-
setNode
public void setNode(String value)
Sets the value of the node property.- Parameters:
value- allowed object isString
-
isOptimisticLock
public boolean isOptimisticLock()
Gets the value of the optimisticLock property.- Returns:
- possible object is
Boolean
-
setOptimisticLock
public void setOptimisticLock(Boolean value)
Sets the value of the optimisticLock property.- Parameters:
value- allowed object isBoolean
-
isUnique
public boolean isUnique()
Gets the value of the unique property.- Returns:
- possible object is
Boolean
-
setUnique
public void setUnique(Boolean value)
Sets the value of the unique property.- Parameters:
value- allowed object isBoolean
-
isUpdate
public boolean isUpdate()
Gets the value of the update property.- Returns:
- possible object is
Boolean
-
-