io.atlasmap.v2.ConvertAreaUnit Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.05.02 at 12:29:58 PM EDT
//
package io.atlasmap.v2;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://atlasmap.io/v2}Action">
* <attribute name="fromUnit" type="{http://atlasmap.io/v2}AreaUnitType" />
* <attribute name="toUnit" type="{http://atlasmap.io/v2}AreaUnitType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ConvertAreaUnit")
public class ConvertAreaUnit
extends Action
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "fromUnit")
protected AreaUnitType fromUnit;
@XmlAttribute(name = "toUnit")
protected AreaUnitType toUnit;
/**
* Gets the value of the fromUnit property.
*
* @return
* possible object is
* {@link AreaUnitType }
*
*/
public AreaUnitType getFromUnit() {
return fromUnit;
}
/**
* Sets the value of the fromUnit property.
*
* @param value
* allowed object is
* {@link AreaUnitType }
*
*/
public void setFromUnit(AreaUnitType value) {
this.fromUnit = value;
}
/**
* Gets the value of the toUnit property.
*
* @return
* possible object is
* {@link AreaUnitType }
*
*/
public AreaUnitType getToUnit() {
return toUnit;
}
/**
* Sets the value of the toUnit property.
*
* @param value
* allowed object is
* {@link AreaUnitType }
*
*/
public void setToUnit(AreaUnitType value) {
this.toUnit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy