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

org.fpml.fpml_5.confirmation.ServiceProcessingStatus Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.04.04 at 04:56:21 PM UTC 
//


package org.fpml.fpml_5.confirmation;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A type defining the content model for report on the status of the processing by a service. In the future we may wish to provide some kind of scope or other qualification for the event, e.g. the currencies, products, or books to which it applies.
 * 
 * 

Java class for ServiceProcessingStatus complex type. * *

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

 * <complexType name="ServiceProcessingStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="cycle" type="{http://www.fpml.org/FpML-5/confirmation}ServiceProcessingCycle" minOccurs="0"/>
 *         <element name="step" type="{http://www.fpml.org/FpML-5/confirmation}ServiceProcessingStep" minOccurs="0"/>
 *         <element name="event" type="{http://www.fpml.org/FpML-5/confirmation}ServiceProcessingEvent"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceProcessingStatus", propOrder = { "cycle", "step", "event" }) public class ServiceProcessingStatus { protected ServiceProcessingCycle cycle; protected ServiceProcessingStep step; @XmlElement(required = true) protected ServiceProcessingEvent event; /** * Gets the value of the cycle property. * * @return * possible object is * {@link ServiceProcessingCycle } * */ public ServiceProcessingCycle getCycle() { return cycle; } /** * Sets the value of the cycle property. * * @param value * allowed object is * {@link ServiceProcessingCycle } * */ public void setCycle(ServiceProcessingCycle value) { this.cycle = value; } /** * Gets the value of the step property. * * @return * possible object is * {@link ServiceProcessingStep } * */ public ServiceProcessingStep getStep() { return step; } /** * Sets the value of the step property. * * @param value * allowed object is * {@link ServiceProcessingStep } * */ public void setStep(ServiceProcessingStep value) { this.step = value; } /** * Gets the value of the event property. * * @return * possible object is * {@link ServiceProcessingEvent } * */ public ServiceProcessingEvent getEvent() { return event; } /** * Sets the value of the event property. * * @param value * allowed object is * {@link ServiceProcessingEvent } * */ public void setEvent(ServiceProcessingEvent value) { this.event = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy