package com.gekko_holding.webservice.referential; 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 cityBean complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="cityBean"> * <simpleContent> * <extension base="<http://webservice.gekko-holding.com/v2_4>entityBean"> * <attribute name="standard" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cityBean") public class CityBean extends EntityBean { @XmlAttribute(name = "standard", required = true) protected String standard; /** * Gets the value of the standard property. * * @return * possible object is * {@link String } * */ public String getStandard() { return standard; } /** * Sets the value of the standard property. * * @param value * allowed object is * {@link String } * */ public void setStandard(String value) { this.standard = value; } }