package org.ebayopensource.turmeric.blogs.v1.services; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="value1" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="value2" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value1", "value2" }) @XmlRootElement(name = "Inparams") public class Inparams { protected int value1; protected int value2; /** * Gets the value of the value1 property. * */ public int getValue1() { return value1; } /** * Sets the value of the value1 property. * */ public void setValue1(int value) { this.value1 = value; } /** * Gets the value of the value2 property. * */ public int getValue2() { return value2; } /** * Sets the value of the value2 property. * */ public void setValue2(int value) { this.value2 = value; } }