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

net.finmath.smartcontract.product.xml.ServiceAdvisory Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
//
// 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type defining the content model for a human-readable notification to the
 *                 users of a service.
 *             
 * 
 * 

Java class for ServiceAdvisory complex type. * *

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

 * <complexType name="ServiceAdvisory">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="category" type="{http://www.fpml.org/FpML-5/confirmation}ServiceAdvisoryCategory"/>
 *         <element name="description" type="{http://www.fpml.org/FpML-5/confirmation}String"/>
 *         <element name="effectiveFrom" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="effectiveTo" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceAdvisory", propOrder = { "category", "description", "effectiveFrom", "effectiveTo" }) public class ServiceAdvisory { @XmlElement(required = true) protected ServiceAdvisoryCategory category; @XmlElement(required = true) protected String description; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar effectiveFrom; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar effectiveTo; /** * Gets the value of the category property. * * @return * possible object is * {@link ServiceAdvisoryCategory } * */ public ServiceAdvisoryCategory getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link ServiceAdvisoryCategory } * */ public void setCategory(ServiceAdvisoryCategory value) { this.category = 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; } /** * Gets the value of the effectiveFrom property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEffectiveFrom() { return effectiveFrom; } /** * Sets the value of the effectiveFrom property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEffectiveFrom(XMLGregorianCalendar value) { this.effectiveFrom = value; } /** * Gets the value of the effectiveTo property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEffectiveTo() { return effectiveTo; } /** * Sets the value of the effectiveTo property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEffectiveTo(XMLGregorianCalendar value) { this.effectiveTo = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy