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

org.plasma.sdo.access.provider.jdo.Interface Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.12.19 at 03:35:27 PM EST 
//


package org.plasma.sdo.access.provider.jdo;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
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 ref="{http://java.sun.com/xml/ns/jdo/jdo}datastore-identity" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}primary-key" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}inheritance" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}version" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}join" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}foreign-key" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}index" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}unique" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}property" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}query" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}fetch-group" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://java.sun.com/xml/ns/jdo/jdo}extension" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://java.sun.com/xml/ns/jdo/jdo}attlist.interface"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "datastoreIdentity", "primaryKey", "inheritance", "version", "joins", "foreignKeies", "indices", "uniques", "properties", "queries", "fetchGroups", "extensions" }) @XmlRootElement(name = "interface") public class Interface { @XmlElement(name = "datastore-identity") protected DatastoreIdentity datastoreIdentity; @XmlElement(name = "primary-key") protected PrimaryKey primaryKey; protected Inheritance inheritance; protected Version version; @XmlElement(name = "join") protected List joins; @XmlElement(name = "foreign-key") protected List foreignKeies; @XmlElement(name = "index") protected List indices; @XmlElement(name = "unique") protected List uniques; @XmlElement(name = "property") protected List properties; @XmlElement(name = "query") protected List queries; @XmlElement(name = "fetch-group") protected List fetchGroups; @XmlElement(name = "extension") protected List extensions; @XmlAttribute(name = "name", required = true) @XmlSchemaType(name = "anySimpleType") protected String name; @XmlAttribute(name = "table") @XmlSchemaType(name = "anySimpleType") protected String table; @XmlAttribute(name = "identity-type") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String identityType; @XmlAttribute(name = "objectid-class") @XmlSchemaType(name = "anySimpleType") protected String objectidClass; @XmlAttribute(name = "requires-extent") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String requiresExtent; @XmlAttribute(name = "detachable") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String detachable; @XmlAttribute(name = "embedded-only") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String embeddedOnly; @XmlAttribute(name = "catalog") @XmlSchemaType(name = "anySimpleType") protected String catalog; @XmlAttribute(name = "schema") @XmlSchemaType(name = "anySimpleType") protected String schema; /** * Gets the value of the datastoreIdentity property. * * @return * possible object is * {@link DatastoreIdentity } * */ public DatastoreIdentity getDatastoreIdentity() { return datastoreIdentity; } /** * Sets the value of the datastoreIdentity property. * * @param value * allowed object is * {@link DatastoreIdentity } * */ public void setDatastoreIdentity(DatastoreIdentity value) { this.datastoreIdentity = value; } /** * Gets the value of the primaryKey property. * * @return * possible object is * {@link PrimaryKey } * */ public PrimaryKey getPrimaryKey() { return primaryKey; } /** * Sets the value of the primaryKey property. * * @param value * allowed object is * {@link PrimaryKey } * */ public void setPrimaryKey(PrimaryKey value) { this.primaryKey = value; } /** * Gets the value of the inheritance property. * * @return * possible object is * {@link Inheritance } * */ public Inheritance getInheritance() { return inheritance; } /** * Sets the value of the inheritance property. * * @param value * allowed object is * {@link Inheritance } * */ public void setInheritance(Inheritance value) { this.inheritance = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link Version } * */ public Version getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link Version } * */ public void setVersion(Version value) { this.version = value; } /** * Gets the value of the joins 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 joins property. * *

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

     *    getJoins().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Join } * * */ public List getJoins() { if (joins == null) { joins = new ArrayList(); } return this.joins; } /** * Gets the value of the foreignKeies 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 foreignKeies property. * *

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

     *    getForeignKeies().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ForeignKey } * * */ public List getForeignKeies() { if (foreignKeies == null) { foreignKeies = new ArrayList(); } return this.foreignKeies; } /** * Gets the value of the indices 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 indices property. * *

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

     *    getIndices().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Index } * * */ public List getIndices() { if (indices == null) { indices = new ArrayList(); } return this.indices; } /** * Gets the value of the uniques 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 uniques property. * *

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

     *    getUniques().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Unique } * * */ public List getUniques() { if (uniques == null) { uniques = new ArrayList(); } return this.uniques; } /** * Gets the value of the properties 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 properties property. * *

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

     *    getProperties().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Property } * * */ public List getProperties() { if (properties == null) { properties = new ArrayList(); } return this.properties; } /** * Gets the value of the queries 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 queries property. * *

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

     *    getQueries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Query } * * */ public List getQueries() { if (queries == null) { queries = new ArrayList(); } return this.queries; } /** * Gets the value of the fetchGroups 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 fetchGroups property. * *

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

     *    getFetchGroups().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FetchGroup } * * */ public List getFetchGroups() { if (fetchGroups == null) { fetchGroups = new ArrayList(); } return this.fetchGroups; } /** * Gets the value of the extensions 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 extensions property. * *

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

     *    getExtensions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List getExtensions() { if (extensions == null) { extensions = new ArrayList(); } return this.extensions; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the table property. * * @return * possible object is * {@link String } * */ public String getTable() { return table; } /** * Sets the value of the table property. * * @param value * allowed object is * {@link String } * */ public void setTable(String value) { this.table = value; } /** * Gets the value of the identityType property. * * @return * possible object is * {@link String } * */ public String getIdentityType() { return identityType; } /** * Sets the value of the identityType property. * * @param value * allowed object is * {@link String } * */ public void setIdentityType(String value) { this.identityType = value; } /** * Gets the value of the objectidClass property. * * @return * possible object is * {@link String } * */ public String getObjectidClass() { return objectidClass; } /** * Sets the value of the objectidClass property. * * @param value * allowed object is * {@link String } * */ public void setObjectidClass(String value) { this.objectidClass = value; } /** * Gets the value of the requiresExtent property. * * @return * possible object is * {@link String } * */ public String getRequiresExtent() { if (requiresExtent == null) { return "true"; } else { return requiresExtent; } } /** * Sets the value of the requiresExtent property. * * @param value * allowed object is * {@link String } * */ public void setRequiresExtent(String value) { this.requiresExtent = value; } /** * Gets the value of the detachable property. * * @return * possible object is * {@link String } * */ public String getDetachable() { if (detachable == null) { return "false"; } else { return detachable; } } /** * Sets the value of the detachable property. * * @param value * allowed object is * {@link String } * */ public void setDetachable(String value) { this.detachable = value; } /** * Gets the value of the embeddedOnly property. * * @return * possible object is * {@link String } * */ public String getEmbeddedOnly() { return embeddedOnly; } /** * Sets the value of the embeddedOnly property. * * @param value * allowed object is * {@link String } * */ public void setEmbeddedOnly(String value) { this.embeddedOnly = value; } /** * Gets the value of the catalog property. * * @return * possible object is * {@link String } * */ public String getCatalog() { return catalog; } /** * Sets the value of the catalog property. * * @param value * allowed object is * {@link String } * */ public void setCatalog(String value) { this.catalog = value; } /** * Gets the value of the schema property. * * @return * possible object is * {@link String } * */ public String getSchema() { return schema; } /** * Sets the value of the schema property. * * @param value * allowed object is * {@link String } * */ public void setSchema(String value) { this.schema = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy