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

org.certificateservices.messages.csmessages.jaxb.Approver Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.07.22 at 09:07:39 AM CEST 
//


package org.certificateservices.messages.csmessages.jaxb;

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;


/**
 * 

Java class for Approval complex type. * *

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

 * <complexType name="Approval">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="type" type="{http://certificateservices.org/xsd/csmessages2_0}ApprovalType"/>
 *         <element name="approvalDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="credential" type="{http://certificateservices.org/xsd/csmessages2_0}Credential"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Approver", namespace = "http://certificateservices.org/xsd/csmessages2_0", propOrder = { "type", "approvalDate", "credential", "description" }) public class Approver { @XmlElement(required = true) protected ApproverType type; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar approvalDate; @XmlElement(required = true) protected Credential credential; protected String description; /** * Gets the value of the type property. * * @return * possible object is * {@link ApproverType } * */ public ApproverType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ApproverType } * */ public void setType(ApproverType value) { this.type = value; } /** * Gets the value of the approvalDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getApprovalDate() { return approvalDate; } /** * Sets the value of the approvalDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setApprovalDate(XMLGregorianCalendar value) { this.approvalDate = value; } /** * Gets the value of the credential property. * * @return * possible object is * {@link Credential } * */ public Credential getCredential() { return credential; } /** * Sets the value of the credential property. * * @param value * allowed object is * {@link Credential } * */ public void setCredential(Credential value) { this.credential = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy