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

com.omgm.speedy.eps.soap.model.ListStreets 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 listStreets complex type. * *

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

 * <complexType name="listStreets">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sessionId" 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="siteId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="language" type="{http://ver01.eps.speedy.sirma.com/}paramLanguage" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "listStreets", propOrder = { "sessionId", "name", "siteId", "language", }) public class ListStreets { protected String sessionId; protected String name; protected long siteId; protected ParamLanguage language; /** * Gets the value of the sessionId property. * * @return * possible object is * {@link String } * */ public String getSessionId() { return sessionId; } /** * Sets the value of the sessionId property. * * @param value * allowed object is * {@link String } * */ public void setSessionId(String value) { this.sessionId = 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 siteId property. * */ public long getSiteId() { return siteId; } /** * Sets the value of the siteId property. * */ public void setSiteId(long value) { this.siteId = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link ParamLanguage } * */ public ParamLanguage getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link ParamLanguage } * */ public void setLanguage(ParamLanguage value) { this.language = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy