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

xjc.org.tak.zeger.enversvalidationplugin.configuration.ConfigurationFile Maven / Gradle / Ivy

Go to download

This is a Maven plugin that allows for easy validation of database auditing with Hibernate and is intended to be used by projects that do not always rely on Envers to create the audit history.

There is a newer version: 0.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.01.09 at 10:13:57 AM CET 
//


package org.tak.zeger.enversvalidationplugin.configuration;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="auditTableInformation" type="{http://zeger-tak.github.com/envers-validation/configuration_1-0}AuditTableInformationType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auditTableInformation" }) @XmlRootElement(name = "configurationFile") public class ConfigurationFile { protected List auditTableInformation; /** * Gets the value of the auditTableInformation property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the auditTableInformation property. * *

* For example, to add a new item, do as follows: *

     *    getAuditTableInformation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AuditTableInformationType } * * */ public List getAuditTableInformation() { if (auditTableInformation == null) { auditTableInformation = new ArrayList(); } return this.auditTableInformation; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy