
com.github.nill14.utils.init.schema.ServiceRegistry Maven / Gradle / Ivy
The newest version!
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.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
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="services" type="{http://www.github.com/nill14/utils/init/serviceRegistry}Services" minOccurs="0"/>
* <element name="properties" type="{http://www.github.com/nill14/utils/init/serviceRegistry}Properties" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"services",
"properties"
})
@XmlRootElement(name = "serviceRegistry")
public class ServiceRegistry {
@XmlElementWrapper
@XmlElement(name = "service", namespace = "http://www.github.com/nill14/utils/init/serviceRegistry")
protected List services;
protected Properties properties;
/**
* Gets the value of the properties property.
*
* @return
* possible object is
* {@link Properties }
*
*/
public Properties getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link Properties }
*
*/
public void setProperties(Properties value) {
this.properties = value;
}
public List getServices() {
if (services == null) {
services = new ArrayList();
}
return services;
}
public void setServices(List services) {
this.services = services;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy