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 Rejection complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="Rejection"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="code" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rejection", propOrder = { "code", "description" }) public class Rejection { protected int code; @XmlElement(required = true) protected String description; /** * Obtiene el valor de la propiedad code. * */ public int getCode() { return code; } /** * Define el valor de la propiedad code. * */ public void setCode(int value) { this.code = value; } /** * Obtiene el valor de la propiedad description. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Define el valor de la propiedad description. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }