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

org.iso.currency.ISO4217 Maven / Gradle / Ivy

Go to download

Rune Testing is a java library that is utilised by Rosetta Code Generators and models expressed in the Rosetta DSL.

There is a newer version: 11.27.2
Show newest version
//
// 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.10.07 at 02:19:46 PM UTC 
//


package org.iso.currency;

import java.util.ArrayList;
import java.util.List;
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.bind.annotation.XmlValue;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

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="CcyTbl">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="CcyNtry" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="CtryNm" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                             <element name="CcyNm">
 *                               <complexType>
 *                                 <simpleContent>
 *                                   <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *                                     <attribute name="IsFund" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *                                   </extension>
 *                                 </simpleContent>
 *                               </complexType>
 *                             </element>
 *                             <element name="Ccy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                             <element name="CcyNbr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
 *                             <element name="CcyMnrUnts" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="Pblshd" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ccyTbl" }) @XmlRootElement(name = "ISO_4217") public class ISO4217 { @XmlElement(name = "CcyTbl", required = true) protected ISO4217 .CcyTbl ccyTbl; @XmlAttribute(name = "Pblshd", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pblshd; /** * Gets the value of the ccyTbl property. * * @return * possible object is * {@link ISO4217 .CcyTbl } * */ public ISO4217 .CcyTbl getCcyTbl() { return ccyTbl; } /** * Sets the value of the ccyTbl property. * * @param value * allowed object is * {@link ISO4217 .CcyTbl } * */ public void setCcyTbl(ISO4217 .CcyTbl value) { this.ccyTbl = value; } /** * Gets the value of the pblshd property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPblshd() { return pblshd; } /** * Sets the value of the pblshd property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPblshd(XMLGregorianCalendar value) { this.pblshd = value; } /** *

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="CcyNtry" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="CtryNm" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   <element name="CcyNm">
     *                     <complexType>
     *                       <simpleContent>
     *                         <extension base="<http://www.w3.org/2001/XMLSchema>string">
     *                           <attribute name="IsFund" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     *                         </extension>
     *                       </simpleContent>
     *                     </complexType>
     *                   </element>
     *                   <element name="Ccy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                   <element name="CcyNbr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
     *                   <element name="CcyMnrUnts" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ccyNtry" }) public static class CcyTbl { @XmlElement(name = "CcyNtry", required = true) protected List ccyNtry; /** * Gets the value of the ccyNtry property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the ccyNtry property. * *

* For example, to add a new item, do as follows: *

         *    getCcyNtry().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ISO4217 .CcyTbl.CcyNtry } * * */ public List getCcyNtry() { if (ccyNtry == null) { ccyNtry = new ArrayList(); } return this.ccyNtry; } /** *

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="CtryNm" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         <element name="CcyNm">
         *           <complexType>
         *             <simpleContent>
         *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
         *                 <attribute name="IsFund" type="{http://www.w3.org/2001/XMLSchema}boolean" />
         *               </extension>
         *             </simpleContent>
         *           </complexType>
         *         </element>
         *         <element name="Ccy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="CcyNbr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
         *         <element name="CcyMnrUnts" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ctryNm", "ccyNm", "ccy", "ccyNbr", "ccyMnrUnts" }) public static class CcyNtry { @XmlElement(name = "CtryNm", required = true) protected String ctryNm; @XmlElement(name = "CcyNm", required = true) protected ISO4217 .CcyTbl.CcyNtry.CcyNm ccyNm; @XmlElement(name = "Ccy") protected String ccy; @XmlElement(name = "CcyNbr") @XmlSchemaType(name = "unsignedShort") protected Integer ccyNbr; @XmlElement(name = "CcyMnrUnts") protected String ccyMnrUnts; /** * Gets the value of the ctryNm property. * * @return * possible object is * {@link String } * */ public String getCtryNm() { return ctryNm; } /** * Sets the value of the ctryNm property. * * @param value * allowed object is * {@link String } * */ public void setCtryNm(String value) { this.ctryNm = value; } /** * Gets the value of the ccyNm property. * * @return * possible object is * {@link ISO4217 .CcyTbl.CcyNtry.CcyNm } * */ public ISO4217 .CcyTbl.CcyNtry.CcyNm getCcyNm() { return ccyNm; } /** * Sets the value of the ccyNm property. * * @param value * allowed object is * {@link ISO4217 .CcyTbl.CcyNtry.CcyNm } * */ public void setCcyNm(ISO4217 .CcyTbl.CcyNtry.CcyNm value) { this.ccyNm = value; } /** * Gets the value of the ccy property. * * @return * possible object is * {@link String } * */ public String getCcy() { return ccy; } /** * Sets the value of the ccy property. * * @param value * allowed object is * {@link String } * */ public void setCcy(String value) { this.ccy = value; } /** * Gets the value of the ccyNbr property. * * @return * possible object is * {@link Integer } * */ public Integer getCcyNbr() { return ccyNbr; } /** * Sets the value of the ccyNbr property. * * @param value * allowed object is * {@link Integer } * */ public void setCcyNbr(Integer value) { this.ccyNbr = value; } /** * Gets the value of the ccyMnrUnts property. * * @return * possible object is * {@link String } * */ public String getCcyMnrUnts() { return ccyMnrUnts; } /** * Sets the value of the ccyMnrUnts property. * * @param value * allowed object is * {@link String } * */ public void setCcyMnrUnts(String value) { this.ccyMnrUnts = value; } /** *

Java class for anonymous complex type. * *

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

             * <complexType>
             *   <simpleContent>
             *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
             *       <attribute name="IsFund" type="{http://www.w3.org/2001/XMLSchema}boolean" />
             *     </extension>
             *   </simpleContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class CcyNm { @XmlValue protected String value; @XmlAttribute(name = "IsFund") protected Boolean isFund; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the isFund property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsFund() { return isFund; } /** * Sets the value of the isFund property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsFund(Boolean value) { this.isFund = value; } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy