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

org.cloudgraph.config.CloudGraphConfiguration Maven / Gradle / Ivy

Go to download

CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.

There is a newer version: 0.7.1
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: 2015.09.11 at 04:42:56 PM MST 
//


package org.cloudgraph.config;

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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * Top level configuration settings
 *             
 * 
 * 

Java class for CloudGraphConfiguration complex type. * *

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

 * <complexType name="CloudGraphConfiguration">
 *   <complexContent>
 *     <extension base="{http://www.cloudgraph.org/config}Configuration">
 *       <sequence>
 *         <element name="Table" type="{http://www.cloudgraph.org/config}Table" maxOccurs="unbounded"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CloudGraphConfiguration", propOrder = { "tables" }) @XmlRootElement(name = "CloudGraphConfiguration") public class CloudGraphConfiguration extends Configuration { @XmlElement(name = "Table", required = true) protected List tables; /** * Gets the value of the tables 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 tables property. * *

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

     *    getTables().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Table } * * */ public List

getTables() { if (tables == null) { tables = new ArrayList
(); } return this.tables; } }