All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstreetmap.osm.Member Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/*
 * Licensed under the EUPL, Version 1.2 or – as soon they will be approved by
 * the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 *
 *   https://joinup.ec.europa.eu/software/page/eupl
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and
 * limitations under the Licence.
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.21 at 02:35:20 PM CET 
//


package org.openstreetmap.osm;

import javax.xml.bind.annotation.*;
import java.math.BigInteger;


/**
 * 

Java class for anonymous complex type. *

*

The following schema fragment specifies the expected content contained within this class. *

*

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="type">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="node"/>
 *             <enumeration value="way"/>
 *             <enumeration value="relation"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
 *       <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "member") public class Member { @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "ref") @XmlSchemaType(name = "unsignedLong") protected BigInteger ref; @XmlAttribute(name = "role") protected String role; /** * Gets the value of the type property. * * @return possible object is * {@link String } */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value allowed object is * {@link String } */ public void setType(String value) { this.type = value; } /** * Gets the value of the ref property. * * @return possible object is * {@link BigInteger } */ public BigInteger getRef() { return ref; } /** * Sets the value of the ref property. * * @param value allowed object is * {@link BigInteger } */ public void setRef(BigInteger value) { this.ref = value; } /** * Gets the value of the role property. * * @return possible object is * {@link String } */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value allowed object is * {@link String } */ public void setRole(String value) { this.role = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy