All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.internal.jaxb.mapping.orm.JaxbCascadeType Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.07.16 at 04:28:05 PM PDT 
//


package org.hibernate.internal.jaxb.mapping.orm;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *                 public enum CascadeType { ALL, PERSIST, MERGE, REMOVE, REFRESH, DETACH};
 *             
 * 
 * 

Java class for cascade-type complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="cascade-type">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="cascade-all" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="cascade-persist" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="cascade-merge" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="cascade-remove" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="cascade-refresh" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *         <element name="cascade-detach" type="{http://java.sun.com/xml/ns/persistence/orm}emptyType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cascade-type", propOrder = { "cascadeAll", "cascadePersist", "cascadeMerge", "cascadeRemove", "cascadeRefresh", "cascadeDetach" }) public class JaxbCascadeType { @XmlElement(name = "cascade-all") protected JaxbEmptyType cascadeAll; @XmlElement(name = "cascade-persist") protected JaxbEmptyType cascadePersist; @XmlElement(name = "cascade-merge") protected JaxbEmptyType cascadeMerge; @XmlElement(name = "cascade-remove") protected JaxbEmptyType cascadeRemove; @XmlElement(name = "cascade-refresh") protected JaxbEmptyType cascadeRefresh; @XmlElement(name = "cascade-detach") protected JaxbEmptyType cascadeDetach; /** * Gets the value of the cascadeAll property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadeAll() { return cascadeAll; } /** * Sets the value of the cascadeAll property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadeAll(JaxbEmptyType value) { this.cascadeAll = value; } /** * Gets the value of the cascadePersist property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadePersist() { return cascadePersist; } /** * Sets the value of the cascadePersist property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadePersist(JaxbEmptyType value) { this.cascadePersist = value; } /** * Gets the value of the cascadeMerge property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadeMerge() { return cascadeMerge; } /** * Sets the value of the cascadeMerge property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadeMerge(JaxbEmptyType value) { this.cascadeMerge = value; } /** * Gets the value of the cascadeRemove property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadeRemove() { return cascadeRemove; } /** * Sets the value of the cascadeRemove property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadeRemove(JaxbEmptyType value) { this.cascadeRemove = value; } /** * Gets the value of the cascadeRefresh property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadeRefresh() { return cascadeRefresh; } /** * Sets the value of the cascadeRefresh property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadeRefresh(JaxbEmptyType value) { this.cascadeRefresh = value; } /** * Gets the value of the cascadeDetach property. * * @return * possible object is * {@link JaxbEmptyType } * */ public JaxbEmptyType getCascadeDetach() { return cascadeDetach; } /** * Sets the value of the cascadeDetach property. * * @param value * allowed object is * {@link JaxbEmptyType } * */ public void setCascadeDetach(JaxbEmptyType value) { this.cascadeDetach = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy