com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.CurrencyConversionTables Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 codbex or an codbex affiliate company and contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: 2022 codbex or an codbex affiliate company and contributors
* SPDX-License-Identifier: EPL-2.0
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.11.26 at 10:54:28 AM EET
//
package com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Root class for specifying tables for conversion (currency conversion and unit conversion)
*
*
* Java class for CurrencyConversionTables complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CurrencyConversionTables">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="rates" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* <attribute name="configuration" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* <attribute name="prefactors" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* <attribute name="notations" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* <attribute name="precisions" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CurrencyConversionTables")
public class CurrencyConversionTables {
/** The rates. */
@XmlAttribute(name = "rates", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String rates;
/** The configuration. */
@XmlAttribute(name = "configuration", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String configuration;
/** The prefactors. */
@XmlAttribute(name = "prefactors", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String prefactors;
/** The notations. */
@XmlAttribute(name = "notations", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String notations;
/** The precisions. */
@XmlAttribute(name = "precisions", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String precisions;
/**
* Gets the value of the rates property.
*
* @return possible object is
* {@link String }
*/
public String getRates() {
return rates;
}
/**
* Sets the value of the rates property.
*
* @param value allowed object is
* {@link String }
*/
public void setRates(String value) {
this.rates = value;
}
/**
* Gets the value of the configuration property.
*
* @return possible object is
* {@link String }
*/
public String getConfiguration() {
return configuration;
}
/**
* Sets the value of the configuration property.
*
* @param value allowed object is
* {@link String }
*/
public void setConfiguration(String value) {
this.configuration = value;
}
/**
* Gets the value of the prefactors property.
*
* @return possible object is
* {@link String }
*/
public String getPrefactors() {
return prefactors;
}
/**
* Sets the value of the prefactors property.
*
* @param value allowed object is
* {@link String }
*/
public void setPrefactors(String value) {
this.prefactors = value;
}
/**
* Gets the value of the notations property.
*
* @return possible object is
* {@link String }
*/
public String getNotations() {
return notations;
}
/**
* Sets the value of the notations property.
*
* @param value allowed object is
* {@link String }
*/
public void setNotations(String value) {
this.notations = value;
}
/**
* Gets the value of the precisions property.
*
* @return possible object is
* {@link String }
*/
public String getPrecisions() {
return precisions;
}
/**
* Sets the value of the precisions property.
*
* @param value allowed object is
* {@link String }
*/
public void setPrecisions(String value) {
this.precisions = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy