package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for ApprovalInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ApprovalInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Status" type="{urn:thesecretserver.com}SecretAccessRequestStatus"/> * <element name="Responder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ResponseDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="ResponseComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ApprovalInfo", propOrder = { "status", "responder", "responseDate", "responseComment", "expirationDate" }) public class ApprovalInfo { @XmlElement(name = "Status", required = true) @XmlSchemaType(name = "string") protected SecretAccessRequestStatus status; @XmlElement(name = "Responder") protected String responder; @XmlElement(name = "ResponseDate", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar responseDate; @XmlElement(name = "ResponseComment") protected String responseComment; @XmlElement(name = "ExpirationDate", required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationDate; /** * Gets the value of the status property. * * @return * possible object is * {@link SecretAccessRequestStatus } * */ public SecretAccessRequestStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link SecretAccessRequestStatus } * */ public void setStatus(SecretAccessRequestStatus value) { this.status = value; } /** * Gets the value of the responder property. * * @return * possible object is * {@link String } * */ public String getResponder() { return responder; } /** * Sets the value of the responder property. * * @param value * allowed object is * {@link String } * */ public void setResponder(String value) { this.responder = value; } /** * Gets the value of the responseDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getResponseDate() { return responseDate; } /** * Sets the value of the responseDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setResponseDate(XMLGregorianCalendar value) { this.responseDate = value; } /** * Gets the value of the responseComment property. * * @return * possible object is * {@link String } * */ public String getResponseComment() { return responseComment; } /** * Sets the value of the responseComment property. * * @param value * allowed object is * {@link String } * */ public void setResponseComment(String value) { this.responseComment = value; } /** * Gets the value of the expirationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpirationDate(XMLGregorianCalendar value) { this.expirationDate = value; } }