com.netgrif.application.engine.importer.model.Currency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.importer.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for currency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="currency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fractionSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "currency", propOrder = {
"code",
"fractionSize",
"locale"
})
public class Currency {
@XmlElement(required = true, defaultValue = "EUR")
protected String code;
protected int fractionSize;
@XmlElement(required = true)
protected String locale;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the fractionSize property.
*
*/
public int getFractionSize() {
return fractionSize;
}
/**
* Sets the value of the fractionSize property.
*
*/
public void setFractionSize(int value) {
this.fractionSize = value;
}
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocale(String value) {
this.locale = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy