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