Package org.hibernate.boot.jaxb.cfg.spi
Class JaxbCfgEventListenerType
- java.lang.Object
-
- org.hibernate.boot.jaxb.cfg.spi.JaxbCfgEventListenerType
-
public class JaxbCfgEventListenerType extends Object
Java class for EventListenerType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EventListenerType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="type" type="{http://www.hibernate.org/xsd/orm/cfg}EventTypeEnum" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
clazz
protected JaxbCfgEventTypeEnum
type
-
Constructor Summary
Constructors Constructor Description JaxbCfgEventListenerType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClazz()
Gets the value of the clazz property.JaxbCfgEventTypeEnum
getType()
Gets the value of the type property.void
setClazz(String value)
Sets the value of the clazz property.void
setType(JaxbCfgEventTypeEnum value)
Sets the value of the type property.
-
-
-
Field Detail
-
clazz
protected String clazz
-
type
protected JaxbCfgEventTypeEnum type
-
-
Method Detail
-
getClazz
public String getClazz()
Gets the value of the clazz property.- Returns:
- possible object is
String
-
setClazz
public void setClazz(String value)
Sets the value of the clazz property.- Parameters:
value
- allowed object isString
-
getType
public JaxbCfgEventTypeEnum getType()
Gets the value of the type property.- Returns:
- possible object is
JaxbCfgEventTypeEnum
-
setType
public void setType(JaxbCfgEventTypeEnum value)
Sets the value of the type property.- Parameters:
value
- allowed object isJaxbCfgEventTypeEnum
-
-