com.omgm.speedy.eps.soap.model.ParamAddressSearch 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 paramAddressSearch complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="paramAddressSearch">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <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="entranceNo" 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="siteId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="streetId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="streetNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
* Used as a search criteria in address search methods
*
* @since 1.0.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "paramAddressSearch", propOrder = {
"blockNo",
"commonObjectId",
"entranceNo",
"quarterId",
"siteId",
"streetId",
"streetNo"
})
public class ParamAddressSearch {
/**
* Block No/name
* MANDATORY: NO
*/
protected String blockNo;
/**
* Common object ID
* MANDATORY: NO
*/
protected Long commonObjectId;
/**
* Entrance
* MANDATORY: NO
*/
protected String entranceNo;
/**
* Quarter ID
* MANDATORY: NO
*/
protected Long quarterId;
/**
* Site ID
* MANDATORY: YES
*/
protected long siteId;
/**
* Street ID
* MANDATORY: NO
*/
protected Long streetId;
/**
* Street No
* MANDATORY: NO
*/
protected String streetNo;
/**
* Gets the blockNo.
* @return Block No
*/
public String getBlockNo() {
return blockNo;
}
/**
* Sets the blockNo
* @param blockNo Block No
*/
public void setBlockNo(String blockNo) {
this.blockNo = blockNo;
}
/**
* Gets the commonObjectId
* @return Common object id
*/
public Long getCommonObjectId() {
return commonObjectId;
}
/**
* Sets the commonObjectId
* @param commonObjectId Common object id
*/
public void setCommonObjectId(Long commonObjectId) {
this.commonObjectId = commonObjectId;
}
/**
* Gets the entranceNo
* @return Entrance No
*/
public String getEntranceNo() {
return entranceNo;
}
/**
* Sets the entranceNo
* @param entranceNo Entrance No
*/
public void setEntranceNo(String entranceNo) {
this.entranceNo = entranceNo;
}
/**
* Gets the quarterId
* @return Quarter id
*/
public Long getQuarterId() {
return quarterId;
}
/**
* Sets the quarterId
* @param quarterId Quarter id
*/
public void setQuarterId(Long quarterId) {
this.quarterId = quarterId;
}
/**
* Gets the siteId
* @return Site id
*/
public long getSiteId() {
return siteId;
}
/**
* Sets the siteId
* @param siteId Site id
*/
public void setSiteId(long siteId) {
this.siteId = siteId;
}
/**
* Gets the streetId
* @return Street id
*/
public Long getStreetId() {
return streetId;
}
/**
* Sets the streetId
* @param streetId Street id
*/
public void setStreetId(Long streetId) {
this.streetId = streetId;
}
/**
* Gets streetNo
* @return Street No
*/
public String getStreetNo() {
return streetNo;
}
/**
* Sets the streetNo
* @param streetNo Street No
*/
public void setStreetNo(String streetNo) {
this.streetNo = streetNo;
}
}