Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmFilterAliasMappingType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmFilterAliasMappingType
-
- All Implemented Interfaces:
Serializable
public class JaxbHbmFilterAliasMappingType extends Object implements Serializable
Java class for filter-alias-mapping-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="filter-alias-mapping-type"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="table" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="entity" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </simpleContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JaxbHbmFilterAliasMappingType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlias()
Gets the value of the alias property.String
getEntity()
Gets the value of the entity property.String
getTable()
Gets the value of the table property.String
getValue()
Gets the value of the value property.void
setAlias(String value)
Sets the value of the alias property.void
setEntity(String value)
Sets the value of the entity property.void
setTable(String value)
Sets the value of the table property.void
setValue(String value)
Sets the value of the value property.
-
-
-
Method Detail
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value
- allowed object isString
-
getAlias
public String getAlias()
Gets the value of the alias property.- Returns:
- possible object is
String
-
setAlias
public void setAlias(String value)
Sets the value of the alias property.- Parameters:
value
- allowed object isString
-
getTable
public String getTable()
Gets the value of the table property.- Returns:
- possible object is
String
-
setTable
public void setTable(String value)
Sets the value of the table property.- Parameters:
value
- allowed object isString
-
getEntity
public String getEntity()
Gets the value of the entity property.- Returns:
- possible object is
String
-
-