
com.github.nill14.utils.init.schema.Provider Maven / Gradle / Ivy
//
// 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: 2015.01.18 at 10:47:38 PM CET
//
package com.github.nill14.utils.init.schema;
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.XmlType;
/**
* Java class for Provider complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Provider">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="provider" type="{http://www.github.com/nill14/utils/init/serviceRegistry}BeanClass" maxOccurs="unbounded" minOccurs="0"/>
* <element name="providerFactory" type="{http://www.github.com/nill14/utils/init/serviceRegistry}BeanClass" maxOccurs="unbounded" minOccurs="0"/>
* <choice>
* </choice>
* </choice>
* <attribute name="registrable" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Provider", propOrder = {
"provider",
"providerFactory"
})
public class Provider {
protected List provider;
protected List providerFactory;
@XmlAttribute(name = "registrable")
protected String registrable;
/**
* Gets the value of the provider 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 provider property.
*
*
* For example, to add a new item, do as follows:
*
* getProvider().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getProvider() {
if (provider == null) {
provider = new ArrayList();
}
return this.provider;
}
/**
* Gets the value of the providerFactory 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 providerFactory property.
*
*
* For example, to add a new item, do as follows:
*
* getProviderFactory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getProviderFactory() {
if (providerFactory == null) {
providerFactory = new ArrayList();
}
return this.providerFactory;
}
/**
* Gets the value of the registrable property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegistrable() {
return registrable;
}
/**
* Sets the value of the registrable property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegistrable(String value) {
this.registrable = value;
}
}