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

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

There is a newer version: 2.5.0
Show newest version

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 valueAddress complex type. * *

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

 * <complexType name="valueAddress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="addressNote" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="apartmentNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="blockNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="commonObjectId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="commonObjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="coordTypeId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="coordX" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="coordY" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="countryId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="eknm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="entranceNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="floorNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fullNomenclature" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="municipalityName" 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="quarterId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="quarterName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="quarterType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="regionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteDetails" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="siteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="stateId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="streetId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="streetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="streetNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="streetType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* *

Insyances if this class are returned in response of Speedy web service method address calls * * @since 1.0.0 * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "valueAddress", propOrder = { "addressNote", "apartmentNo", "blockNo", "commonObjectId", "commonObjectName", "coordTypeId", "coordX", "coordY", "countryId", "eknm", "entranceNo", "floorNo", "fullNomenclature", "municipalityName", "postCode", "quarterId", "quarterName", "quarterType", "regionName", "siteDetails", "siteId", "siteName", "siteType", "stateId", "streetId", "streetName", "streetNo", "streetType" }) public class ValueAddress { /** * Address note */ protected String addressNote; /** * Appartment No */ protected String apartmentNo; /** * Block No */ protected String blockNo; /** * Common object ID */ protected Long commonObjectId; /** * Common object name */ protected String commonObjectName; /** * GIS coordinates type */ protected Integer coordTypeId; /** * GIS coordinate - X */ protected Double coordX; /** * GIS coordinate - Y */ protected Double coordY; /** * Country ID (ISO) */ protected Long countryId; /** * Unified classifier id */ protected String eknm; /** * Entrance No */ protected String entranceNo; /** * Floor No */ protected String floorNo; /** * Flag for full nomenclature */ protected boolean fullNomenclature; /** * Municpality name */ protected String municipalityName; /** * Post code */ protected String postCode; /** * Quarter ID */ protected Long quarterId; /** * Quarter name */ protected String quarterName; /** * Quarter type */ protected String quarterType; /** * Region name */ protected String regionName; /** * Site details */ protected String siteDetails; /** * Site ID */ protected Long siteId; /** * Site name */ protected String siteName; /** * Site type */ protected String siteType; /** * State id */ protected String stateId; /** * Street ID */ protected Long streetId; /** * Street name */ protected String streetName; /** * Street No */ protected String streetNo; /** * Street type */ protected String streetType; /** * Gets the address note * @return Address note */ public String getAddressNote() { return addressNote; } /** * Sets the address note * @param addressNote Address note */ public void setAddressNote(String addressNote) { this.addressNote = addressNote; } /** * Gets the apartment No * @return Apartment No */ public String getApartmentNo() { return apartmentNo; } /** * Sets the apartment No * @param apartmentNo Apartment No */ public void setApartmentNo(String apartmentNo) { this.apartmentNo = apartmentNo; } /** * Gets the block No * @return Block No */ public String getBlockNo() { return blockNo; } /** * Sets the block No * @param blockNo Block No */ public void setBlockNo(String blockNo) { this.blockNo = blockNo; } /** * Gets the common object id * @return Common object id */ public Long getCommonObjectId() { return commonObjectId; } /** * Sets the common object id * @param commonObjectId Common object id */ public void setCommonObjectId(Long commonObjectId) { this.commonObjectId = commonObjectId; } /** * Gets the common object name * @return Common object name */ public String getCommonObjectName() { return commonObjectName; } /** * Sets the common object name * @param commonObjectName Common object name */ public void setCommonObjectName(String commonObjectName) { this.commonObjectName = commonObjectName; } /** * Gets the GPS coordinate type id * @return GPS coordinate type id */ public Integer getCoordTypeId() { return coordTypeId; } /** * Sets the GPS coordinate type id * @param coordTypeId GPS coordinate type id */ public void setCoordTypeId(Integer coordTypeId) { this.coordTypeId = coordTypeId; } /** * Gets the GPS X coordinate * @return GPS X coordinate */ public Double getCoordX() { return coordX; } /** * Sets the GPS X coordinate * @param coordX GPS X coordinate */ public void setCoordX(Double coordX) { this.coordX = coordX; } /** * Gets the GPS Y coordinate * @return GPS Y coordinate */ public Double getCoordY() { return coordY; } /** * Sets the GPS Y coordinate * @param coordY GPS Y coordinate */ public void setCoordY(Double coordY) { this.coordY = coordY; } /** * Gets the country id * @return Country id */ public Long getCountryId() { return countryId; } /** * Sets the country id * @param countryId Country id */ public void setCountryId(Long countryId) { this.countryId = countryId; } /** * Gets the national unified classifier id * @return National unified classifier id */ public String getEknm() { return eknm; } /** * Sets the national unified classifier id * @param eknm National unified classifier id */ public void setEknm(String eknm) { this.eknm = eknm; } /** * Gets the entrance No * @return Entrance No */ public String getEntranceNo() { return entranceNo; } /** * Sets the entrance No * @param entranceNo Entrance No */ public void setEntranceNo(String entranceNo) { this.entranceNo = entranceNo; } /** * Gets the floor No * @return Floor No */ public String getFloorNo() { return floorNo; } /** * Sets the floor No * @param floorNo Floor No */ public void setFloorNo(String floorNo) { this.floorNo = floorNo; } /** * Gets the full nomenclature flag value * @return Full nomenclature flag value */ public boolean isFullNomenclature() { return fullNomenclature; } /** * Sets the full nomenclature flag value * @param fullNomenclature Full nomenclature flag value */ public void setFullNomenclature(boolean fullNomenclature) { this.fullNomenclature = fullNomenclature; } /** * Gets the municipality name * @return Municipality name */ public String getMunicipalityName() { return municipalityName; } /** * Sets the municipality name * @param municipalityName Municipality name */ public void setMunicipalityName(String municipalityName) { this.municipalityName = municipalityName; } /** * Gets the post code * @return Post code */ public String getPostCode() { return postCode; } /** * Sets the post code * @param postCode Post code */ public void setPostCode(String postCode) { this.postCode = postCode; } /** * Gets the quarter id * @return Quarter id */ public Long getQuarterId() { return quarterId; } /** * Sets the quarter id * @param quarterId Quarter id */ public void setQuarterId(Long quarterId) { this.quarterId = quarterId; } /** * Gets the quarter name * @return Quarter name */ public String getQuarterName() { return quarterName; } /** * Sets the quarter name * @param quarterName Quarter name */ public void setQuarterName(String quarterName) { this.quarterName = quarterName; } /** * Gets the quarter type * @return Quarter type */ public String getQuarterType() { return quarterType; } /** * Sets the quarter type * @param quarterType Quarter type */ public void setQuarterType(String quarterType) { this.quarterType = quarterType; } /** * Gets the region name * @return Region name */ public String getRegionName() { return regionName; } /** * Sets the region name * @param regionName Region name */ public void setRegionName(String regionName) { this.regionName = regionName; } /** * Gets the site details * @return Site details */ public String getSiteDetails() { return siteDetails; } /** * Sets the site details * @param siteDetails Site details */ public void setSiteDetails(String siteDetails) { this.siteDetails = siteDetails; } /** * Gets the site id * @return Site id */ public Long getSiteId() { return siteId; } /** * Sets the site id * @param siteId Site id */ public void setSiteId(Long siteId) { this.siteId = siteId; } /** * Gets the site name * @return Site name */ public String getSiteName() { return siteName; } /** * Sets the site name * @param siteName Site name */ public void setSiteName(String siteName) { this.siteName = siteName; } /** * Gets the site type * @return Site type */ public String getSiteType() { return siteType; } /** * Sets the site type * @param siteType Site type */ public void setSiteType(String siteType) { this.siteType = siteType; } /** * Gets the state id * @return State id */ public String getStateId() { return stateId; } /** * Sets the state id * @param stateId State id */ public void setStateId(String stateId) { this.stateId = stateId; } /** * Gets the street id * @return Street id */ public Long getStreetId() { return streetId; } /** * Sets the street id * @param streetId Street id */ public void setStreetId(Long streetId) { this.streetId = streetId; } /** * Gets the street name * @return Street name */ public String getStreetName() { return streetName; } /** * Sets the street name * @param streetName Street name */ public void setStreetName(String streetName) { this.streetName = streetName; } /** * Gets the street No * @return Street No */ public String getStreetNo() { return streetNo; } /** * Sets the street No * * @param streetNo Street No */ public void setStreetNo(String streetNo) { this.streetNo = streetNo; } /** * Gets the street type * @return Street type */ public String getStreetType() { return streetType; } /** * Sets the street type * @param streetType Street type */ public void setStreetType(String streetType) { this.streetType = streetType; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy