// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2015.08.04 at 01:49:18 PM EDT // package io.apiman.test.common.plan; 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.XmlValue; /** * <p>Java class for testType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="testType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="endpoint" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "testType", propOrder = { "value" }) public class TestType { @XmlValue protected String value; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "endpoint") protected String endpoint; @XmlAttribute(name = "delay") private Integer delay; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the endpoint property. * * @return * possible object is * {@link String } * */ public String getEndpoint() { return endpoint; } /** * Sets the value of the endpoint property. * * @param value * allowed object is * {@link String } * */ public void setEndpoint(String value) { this.endpoint = value; } /** * @return the delay */ public Integer getDelay() { return delay; } /** * @param delay the delay to set */ public void setDelay(Integer delay) { this.delay = delay; } }