net.finmath.smartcontract.product.xml.ServiceNotification 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* A type defining the content model for a message that allows a service to
* send a notification message to a user of the service.
*
*
* Java class for ServiceNotification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServiceNotification">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}NotificationMessage">
* <sequence>
* <element name="serviceName" type="{http://www.fpml.org/FpML-5/confirmation}NormalizedString" minOccurs="0"/>
* <choice>
* <element name="status" type="{http://www.fpml.org/FpML-5/confirmation}ServiceStatus"/>
* <element name="processingStatus" type="{http://www.fpml.org/FpML-5/confirmation}ServiceProcessingStatus"/>
* <element name="advisory" type="{http://www.fpml.org/FpML-5/confirmation}ServiceAdvisory"/>
* </choice>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceNotification", propOrder = {
"serviceName",
"status",
"processingStatus",
"advisory"
})
public class ServiceNotification
extends NotificationMessage
{
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String serviceName;
protected ServiceStatus status;
protected ServiceProcessingStatus processingStatus;
protected ServiceAdvisory advisory;
/**
* Gets the value of the serviceName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceName() {
return serviceName;
}
/**
* Sets the value of the serviceName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceName(String value) {
this.serviceName = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link ServiceStatus }
*
*/
public ServiceStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link ServiceStatus }
*
*/
public void setStatus(ServiceStatus value) {
this.status = value;
}
/**
* Gets the value of the processingStatus property.
*
* @return
* possible object is
* {@link ServiceProcessingStatus }
*
*/
public ServiceProcessingStatus getProcessingStatus() {
return processingStatus;
}
/**
* Sets the value of the processingStatus property.
*
* @param value
* allowed object is
* {@link ServiceProcessingStatus }
*
*/
public void setProcessingStatus(ServiceProcessingStatus value) {
this.processingStatus = value;
}
/**
* Gets the value of the advisory property.
*
* @return
* possible object is
* {@link ServiceAdvisory }
*
*/
public ServiceAdvisory getAdvisory() {
return advisory;
}
/**
* Sets the value of the advisory property.
*
* @param value
* allowed object is
* {@link ServiceAdvisory }
*
*/
public void setAdvisory(ServiceAdvisory value) {
this.advisory = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy