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

org.jcp.xmlns.xml.ns.persistence.Persistence Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.11.10 at 11:23:32 PM CET 
//


package org.jcp.xmlns.xml.ns.persistence;

import java.util.ArrayList;
import java.util.List;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

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="persistence-unit" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="provider" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="jta-data-source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="non-jta-data-source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="mapping-file" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="jar-file" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="class" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="exclude-unlisted-classes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *                   <element name="shared-cache-mode" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-caching-type" minOccurs="0"/>
 *                   <element name="validation-mode" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-validation-mode-type" minOccurs="0"/>
 *                   <element name="properties" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="property" maxOccurs="unbounded" minOccurs="0">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                                     <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *                 <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 <attribute name="transaction-type" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-transaction-type" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="version" use="required" type="{http://xmlns.jcp.org/xml/ns/persistence}versionType" fixed="2.1" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "persistenceUnit" }) @XmlRootElement(name = "persistence") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public class Persistence { @XmlElement(name = "persistence-unit", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected List persistenceUnit; @XmlAttribute(name = "version", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String version; /** * Gets the value of the persistenceUnit 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 persistenceUnit property. * *

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

     *    getPersistenceUnit().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Persistence.PersistenceUnit } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public List getPersistenceUnit() { if (persistenceUnit == null) { persistenceUnit = new ArrayList(); } return this.persistenceUnit; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getVersion() { if (version == null) { return "2.1"; } else { return version; } } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setVersion(String value) { this.version = value; } /** * * * Configuration of a persistence unit. * * * *

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="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="provider" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="jta-data-source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="non-jta-data-source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="mapping-file" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="jar-file" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="class" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="exclude-unlisted-classes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
     *         <element name="shared-cache-mode" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-caching-type" minOccurs="0"/>
     *         <element name="validation-mode" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-validation-mode-type" minOccurs="0"/>
     *         <element name="properties" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="property" maxOccurs="unbounded" minOccurs="0">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                           <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       <attribute name="transaction-type" type="{http://xmlns.jcp.org/xml/ns/persistence}persistence-unit-transaction-type" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "description", "provider", "jtaDataSource", "nonJtaDataSource", "mappingFile", "jarFile", "clazz", "excludeUnlistedClasses", "sharedCacheMode", "validationMode", "properties" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public static class PersistenceUnit { @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String description; @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String provider; @XmlElement(name = "jta-data-source") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String jtaDataSource; @XmlElement(name = "non-jta-data-source") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String nonJtaDataSource; @XmlElement(name = "mapping-file") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected List mappingFile; @XmlElement(name = "jar-file") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected List jarFile; @XmlElement(name = "class") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected List clazz; @XmlElement(name = "exclude-unlisted-classes", defaultValue = "true") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected Boolean excludeUnlistedClasses = true; @XmlElement(name = "shared-cache-mode") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected PersistenceUnitCachingType sharedCacheMode; @XmlElement(name = "validation-mode") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected PersistenceUnitValidationModeType validationMode; @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected Persistence.PersistenceUnit.Properties properties; @XmlAttribute(name = "name", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String name; @XmlAttribute(name = "transaction-type") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected PersistenceUnitTransactionType transactionType; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setDescription(String value) { this.description = value; } /** * Gets the value of the provider property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getProvider() { return provider; } /** * Sets the value of the provider property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setProvider(String value) { this.provider = value; } /** * Gets the value of the jtaDataSource property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getJtaDataSource() { return jtaDataSource; } /** * Sets the value of the jtaDataSource property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setJtaDataSource(String value) { this.jtaDataSource = value; } /** * Gets the value of the nonJtaDataSource property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getNonJtaDataSource() { return nonJtaDataSource; } /** * Sets the value of the nonJtaDataSource property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setNonJtaDataSource(String value) { this.nonJtaDataSource = value; } /** * Gets the value of the mappingFile 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 mappingFile property. * *

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

         *    getMappingFile().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public List getMappingFile() { if (mappingFile == null) { mappingFile = new ArrayList(); } return this.mappingFile; } /** * Gets the value of the jarFile 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 jarFile property. * *

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

         *    getJarFile().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public List getJarFile() { if (jarFile == null) { jarFile = new ArrayList(); } return this.jarFile; } /** * Gets the value of the clazz 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 clazz property. * *

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

         *    getClazz().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public List getClazz() { if (clazz == null) { clazz = new ArrayList(); } return this.clazz; } /** * Gets the value of the excludeUnlistedClasses property. * * @return * possible object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public Boolean isExcludeUnlistedClasses() { return excludeUnlistedClasses; } /** * Sets the value of the excludeUnlistedClasses property. * * @param value * allowed object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setExcludeUnlistedClasses(Boolean value) { this.excludeUnlistedClasses = value; } /** * Gets the value of the sharedCacheMode property. * * @return * possible object is * {@link PersistenceUnitCachingType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public PersistenceUnitCachingType getSharedCacheMode() { return sharedCacheMode; } /** * Sets the value of the sharedCacheMode property. * * @param value * allowed object is * {@link PersistenceUnitCachingType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setSharedCacheMode(PersistenceUnitCachingType value) { this.sharedCacheMode = value; } /** * Gets the value of the validationMode property. * * @return * possible object is * {@link PersistenceUnitValidationModeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public PersistenceUnitValidationModeType getValidationMode() { return validationMode; } /** * Sets the value of the validationMode property. * * @param value * allowed object is * {@link PersistenceUnitValidationModeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setValidationMode(PersistenceUnitValidationModeType value) { this.validationMode = value; } /** * Gets the value of the properties property. * * @return * possible object is * {@link Persistence.PersistenceUnit.Properties } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public Persistence.PersistenceUnit.Properties getProperties() { return properties; } /** * Sets the value of the properties property. * * @param value * allowed object is * {@link Persistence.PersistenceUnit.Properties } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setProperties(Persistence.PersistenceUnit.Properties value) { this.properties = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setName(String value) { this.name = value; } /** * Gets the value of the transactionType property. * * @return * possible object is * {@link PersistenceUnitTransactionType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public PersistenceUnitTransactionType getTransactionType() { return transactionType; } /** * Sets the value of the transactionType property. * * @param value * allowed object is * {@link PersistenceUnitTransactionType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setTransactionType(PersistenceUnitTransactionType value) { this.transactionType = value; } /** *

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="property" maxOccurs="unbounded" minOccurs="0">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *                 <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "property" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public static class Properties { @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected List property; /** * Gets the value of the property 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 property property. * *

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

             *    getProperty().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Persistence.PersistenceUnit.Properties.Property } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public List getProperty() { if (property == null) { property = new ArrayList(); } return this.property; } /** *

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">
             *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
             *       <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
             *     </restriction>
             *   </complexContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public static class Property { @XmlAttribute(name = "name", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String name; @XmlAttribute(name = "value", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") protected String value; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setName(String value) { this.name = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-11-10T11:23:32+01:00", comments = "JAXB RI v2.2.7") public void setValue(String value) { this.value = value; } } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy