net.finmath.smartcontract.product.xml.ServiceProcessingStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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