Package org.hibernate.boot.jaxb.mapping
Class JaxbCustomSql
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbCustomSql
-
- All Implemented Interfaces:
Serializable
public class JaxbCustomSql extends Object implements Serializable
Java class for custom-sql complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="custom-sql"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="callable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="check" type="{http://www.hibernate.org/xsd/orm/mapping}custom-sql-check-type" /> </extension> </simpleContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JaxbCustomSql()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecuteUpdateResultCheckStyle
getCheck()
Gets the value of the check property.String
getValue()
Gets the value of the value property.boolean
isCallable()
Gets the value of the callable property.void
setCallable(Boolean value)
Sets the value of the callable property.void
setCheck(ExecuteUpdateResultCheckStyle value)
Sets the value of the check property.void
setValue(String value)
Sets the value of the value property.
-
-
-
Field Detail
-
value
protected String value
-
callable
protected Boolean callable
-
check
protected ExecuteUpdateResultCheckStyle check
-
-
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
-
isCallable
public boolean isCallable()
Gets the value of the callable property.- Returns:
- possible object is
Boolean
-
setCallable
public void setCallable(Boolean value)
Sets the value of the callable property.- Parameters:
value
- allowed object isBoolean
-
getCheck
public ExecuteUpdateResultCheckStyle getCheck()
Gets the value of the check property.- Returns:
- possible object is
String
-
setCheck
public void setCheck(ExecuteUpdateResultCheckStyle value)
Sets the value of the check property.- Parameters:
value
- allowed object isString
-
-