package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para Substitute complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="Substitute"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="job" type="{http://www.indra.es/portafirmasws/cws}Job" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Substitute", propOrder = { "id", "name", "job" }) public class Substitute { @XmlElement(required = true) protected String id; protected String name; protected Job job; /** * Obtiene el valor de la propiedad id. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Define el valor de la propiedad id. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Obtiene el valor de la propiedad name. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Define el valor de la propiedad name. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Obtiene el valor de la propiedad job. * * @return * possible object is * {@link Job } * */ public Job getJob() { return job; } /** * Define el valor de la propiedad job. * * @param value * allowed object is * {@link Job } * */ public void setJob(Job value) { this.job = value; } }