Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Created March 31, 2015 08:34
Show Gist options
  • Select an option

  • Save ivanursul/4579b1e6b54709d72f2b to your computer and use it in GitHub Desktop.

Select an option

Save ivanursul/4579b1e6b54709d72f2b to your computer and use it in GitHub Desktop.
package ua.edboservice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="SessionGUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ActualDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Id_Language" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="FIOMask" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="DocumentSeries" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="DocumentNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Ids_DocumentTypes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Hundred" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="PersonCodeU" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Filters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sessionGUID",
"actualDate",
"idLanguage",
"fioMask",
"documentSeries",
"documentNumber",
"idsDocumentTypes",
"hundred",
"personCodeU",
"filters"
})
@XmlRootElement(name = "PersonsFind")
public class PersonsFind {
@XmlElement(name = "SessionGUID")
protected String sessionGUID;
@XmlElement(name = "ActualDate")
protected String actualDate;
@XmlElement(name = "Id_Language")
protected int idLanguage;
@XmlElement(name = "FIOMask")
protected String fioMask;
@XmlElement(name = "DocumentSeries")
protected String documentSeries;
@XmlElement(name = "DocumentNumber")
protected String documentNumber;
@XmlElement(name = "Ids_DocumentTypes")
protected String idsDocumentTypes;
@XmlElement(name = "Hundred")
protected int hundred;
@XmlElement(name = "PersonCodeU")
protected String personCodeU;
@XmlElement(name = "Filters")
protected String filters;
/**
* Gets the value of the sessionGUID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionGUID() {
return sessionGUID;
}
/**
* Sets the value of the sessionGUID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionGUID(String value) {
this.sessionGUID = value;
}
/**
* Gets the value of the actualDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActualDate() {
return actualDate;
}
/**
* Sets the value of the actualDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActualDate(String value) {
this.actualDate = value;
}
/**
* Gets the value of the idLanguage property.
*
*/
public int getIdLanguage() {
return idLanguage;
}
/**
* Sets the value of the idLanguage property.
*
*/
public void setIdLanguage(int value) {
this.idLanguage = value;
}
/**
* Gets the value of the fioMask property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFIOMask() {
return fioMask;
}
/**
* Sets the value of the fioMask property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFIOMask(String value) {
this.fioMask = value;
}
/**
* Gets the value of the documentSeries property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocumentSeries() {
return documentSeries;
}
/**
* Sets the value of the documentSeries property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentSeries(String value) {
this.documentSeries = value;
}
/**
* Gets the value of the documentNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocumentNumber() {
return documentNumber;
}
/**
* Sets the value of the documentNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentNumber(String value) {
this.documentNumber = value;
}
/**
* Gets the value of the idsDocumentTypes property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdsDocumentTypes() {
return idsDocumentTypes;
}
/**
* Sets the value of the idsDocumentTypes property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdsDocumentTypes(String value) {
this.idsDocumentTypes = value;
}
/**
* Gets the value of the hundred property.
*
*/
public int getHundred() {
return hundred;
}
/**
* Sets the value of the hundred property.
*
*/
public void setHundred(int value) {
this.hundred = value;
}
/**
* Gets the value of the personCodeU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonCodeU() {
return personCodeU;
}
/**
* Sets the value of the personCodeU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonCodeU(String value) {
this.personCodeU = value;
}
/**
* Gets the value of the filters property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilters() {
return filters;
}
/**
* Sets the value of the filters property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilters(String value) {
this.filters = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment