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>
 * 
* *

Instances of this class are returned as a result of sites speedy web service requests * * @since 1.0.0 * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultSite", propOrder = { "addrNomen", "id", "municipality", "name", "postCode", "region", "type" }) public class ResultSite { /** * Site address nomenclature. * Specifies if speedy have (or have not) address nomenclature (streets, quarters etc.) for this site */ protected AddrNomen addrNomen; /** * Site ID */ protected long id; /** * Site municipality name */ protected String municipality; /** * Site name */ protected String name; /** * Site post code */ protected String postCode; /** * Site region name */ protected String region; /** * Site type */ protected String type; /** * Gets the address nomenclature type. * Specifies if speedy have (or have not) address nomenclature (streets, quarters etc.) for this site * @return Address nomenclature type */ public AddrNomen getAddrNomen() { return addrNomen; } /** * Sets the address nomenclature type * @param addrNomen Address nomenclature type */ public void setAddrNomen(AddrNomen addrNomen) { this.addrNomen = addrNomen; } /** * Gets the site id * @return Site id */ public long getId() { return id; } /** * Sets the site id * @param id Site id */ public void setId(long id) { this.id = id; } /** * Gets the municipality name * @return Municipality name */ public String getMunicipality() { return municipality; } /** * Sets the municipality name * @param municipality Municipality name */ public void setMunicipality(String municipality) { this.municipality = municipality; } /** * Gets the site name * @return Site name */ public String getName() { return name; } /** * Sets the site name * @param name Site name */ public void setName(String name) { this.name = name; } /** * Gets the site post code * @return Site post code */ public String getPostCode() { return postCode; } /** * Sets the site post code * @param postCode Site post code */ public void setPostCode(String postCode) { this.postCode = postCode; } /** * Gets the site region name * @return Site region name */ public String getRegion() { return region; } /** * Sets the site region name * @param region Site region name */ public void setRegion(String region) { this.region = region; } /** * Gets the site type * @return Site type */ public String getType() { return type; } /** * Sets the site type * @param type Site type */ public void setType(String type) { this.type = type; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy