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

com.omgm.speedy.eps.soap.model.ResultSite Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for resultSite complex type. * *

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

 * <complexType name="resultSite">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="addrNomen" type="{http://ver01.eps.speedy.sirma.com/}addrNomen" minOccurs="0"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="postCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultSite", propOrder = { "addrNomen", "id", "municipality", "name", "postCode", "region", "type" }) public class ResultSite { protected AddrNomen addrNomen; protected long id; protected String municipality; protected String name; protected String postCode; protected String region; protected String type; /** * Gets the value of the addrNomen property. * * @return * possible object is * {@link AddrNomen } * */ public AddrNomen getAddrNomen() { return addrNomen; } /** * Sets the value of the addrNomen property. * * @param value * allowed object is * {@link AddrNomen } * */ public void setAddrNomen(AddrNomen value) { this.addrNomen = value; } /** * Gets the value of the id property. * */ public long getId() { return id; } /** * Sets the value of the id property. * */ public void setId(long value) { this.id = value; } /** * Gets the value of the municipality property. * * @return * possible object is * {@link String } * */ public String getMunicipality() { return municipality; } /** * Sets the value of the municipality property. * * @param value * allowed object is * {@link String } * */ public void setMunicipality(String value) { this.municipality = 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 postCode property. * * @return * possible object is * {@link String } * */ public String getPostCode() { return postCode; } /** * Sets the value of the postCode property. * * @param value * allowed object is * {@link String } * */ public void setPostCode(String value) { this.postCode = value; } /** * Gets the value of the region property. * * @return * possible object is * {@link String } * */ public String getRegion() { return region; } /** * Sets the value of the region property. * * @param value * allowed object is * {@link String } * */ public void setRegion(String value) { this.region = value; } /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy