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

org.certificateservices.messages.csmessages.jaxb.CSMessage 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.05.21 at 02:30:00 PM CEST 
//


package org.certificateservices.messages.csmessages.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;

import org.certificateservices.messages.xmldsig.jaxb.SignatureType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="sourceId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="destinationId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="organisation" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="originator" type="{http://certificateservices.org/xsd/csmessages2_0}Originator" minOccurs="0"/>
 *         <element name="assertions" type="{http://certificateservices.org/xsd/csmessages2_0}Assertions" minOccurs="0"/>
 *         <element name="payload" type="{http://certificateservices.org/xsd/csmessages2_0}Payload"/>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="version" use="required" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring" />
 *       <attribute name="ID" use="required" type="{http://certificateservices.org/xsd/csmessages2_0}uuid" />
 *       <attribute name="timeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "sourceId", "destinationId", "organisation", "originator", "assertions", "payload", "signature" }) @XmlRootElement(name = "CSMessage", namespace = "http://certificateservices.org/xsd/csmessages2_0") public class CSMessage { @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0", required = true) protected String name; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0", required = true) protected String sourceId; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0", required = true) protected String destinationId; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0", required = true) protected String organisation; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0") protected Originator originator; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0") protected Assertions assertions; @XmlElement(namespace = "http://certificateservices.org/xsd/csmessages2_0", required = true) protected Payload payload; @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#") protected SignatureType signature; @XmlAttribute(name = "version", required = true) protected String version; @XmlAttribute(name = "payLoadVersion", required = true) protected String payLoadVersion; @XmlAttribute(name = "ID", required = true) protected String id; @XmlAttribute(name = "timeStamp") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timeStamp; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the sourceId property. * * @return * possible object is * {@link String } * */ public String getSourceId() { return sourceId; } /** * Sets the value of the sourceId property. * * @param value * allowed object is * {@link String } * */ public void setSourceId(String value) { this.sourceId = value; } /** * Gets the value of the destinationId property. * * @return * possible object is * {@link String } * */ public String getDestinationId() { return destinationId; } /** * Sets the value of the destinationId property. * * @param value * allowed object is * {@link String } * */ public void setDestinationId(String value) { this.destinationId = value; } /** * Gets the value of the organisation property. * * @return * possible object is * {@link String } * */ public String getOrganisation() { return organisation; } /** * Sets the value of the organisation property. * * @param value * allowed object is * {@link String } * */ public void setOrganisation(String value) { this.organisation = value; } /** * Gets the value of the originator property. * * @return * possible object is * {@link Originator } * */ public Originator getOriginator() { return originator; } /** * Sets the value of the originator property. * * @param value * allowed object is * {@link Originator } * */ public void setOriginator(Originator value) { this.originator = value; } /** * Gets the value of the assertions property. * * @return * possible object is * {@link Assertions } * */ public Assertions getAssertions() { return assertions; } /** * Sets the value of the assertions property. * * @param value * allowed object is * {@link Assertions } * */ public void setAssertions(Assertions value) { this.assertions = value; } /** * Gets the value of the payload property. * * @return * possible object is * {@link Payload } * */ public Payload getPayload() { return payload; } /** * Sets the value of the payload property. * * @param value * allowed object is * {@link Payload } * */ public void setPayload(Payload value) { this.payload = value; } /** * Gets the value of the signature property. * * @return * possible object is * {@link SignatureType } * */ public SignatureType getSignature() { return signature; } /** * Sets the value of the signature property. * * @param value * allowed object is * {@link SignatureType } * */ public void setSignature(SignatureType value) { this.signature = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the payLoadVersion property. * * @return * possible object is * {@link String } * */ public String getPayLoadVersion() { return payLoadVersion; } /** * Sets the value of the payLoadVersion property. * * @param value * allowed object is * {@link String } * */ public void setPayLoadVersion(String value) { this.payLoadVersion = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getID() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setID(String value) { this.id = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimeStamp(XMLGregorianCalendar value) { this.timeStamp = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy