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

com.github.nill14.utils.init.schema.Service Maven / Gradle / Ivy


package com.github.nill14.utils.init.schema;

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 Service complex type. * *

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

 * <complexType name="Service">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="bean" type="{http://www.github.com/nill14/utils/init/serviceRegistry}BeanClass"/>
 *         <element name="factory" type="{http://www.github.com/nill14/utils/init/serviceRegistry}BeanClass"/>
 *       </choice>
 *       <attribute name="interface" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Service", propOrder = { "factory", "bean" }) public class Service { protected String factory; protected String bean; @XmlAttribute(name = "interface") protected String _interface; /** * Gets the value of the factory property. * * @return * possible object is * {@link String } * */ public String getFactory() { return factory; } /** * Sets the value of the factory property. * * @param value * allowed object is * {@link String } * */ public void setFactory(String value) { this.factory = value; } /** * Gets the value of the bean property. * * @return * possible object is * {@link String } * */ public String getBean() { return bean; } /** * Sets the value of the bean property. * * @param value * allowed object is * {@link String } * */ public void setBean(String value) { this.bean = value; } /** * Gets the value of the interface property. * * @return * possible object is * {@link String } * */ public String getInterface() { return _interface; } /** * Sets the value of the interface property. * * @param value * allowed object is * {@link String } * */ public void setInterface(String value) { this._interface = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy