// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.02.27 at 10:05:31 PM YEKT // package ru.csu.stan.java.cfg.jaxb; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Flow complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Flow"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="to_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="from_id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Flow") public class Flow { @XmlAttribute(name = "to_id") protected BigInteger toId; @XmlAttribute(name = "from_id") protected BigInteger fromId; /** * Gets the value of the toId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getToId() { return toId; } /** * Sets the value of the toId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setToId(BigInteger value) { this.toId = value; } /** * Gets the value of the fromId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFromId() { return fromId; } /** * Sets the value of the fromId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFromId(BigInteger value) { this.fromId = value; } }