package ru.codeinside.esia; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for SystemParams complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SystemParams"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="app_id" type="{http://www.w3.org/2001/XMLSchema}long"/> * <element name="org_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="form_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="status_pgu" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemParams", namespace = "http://oep-penza.ru/com/oep", propOrder = { "appId", "orgId", "formId", "statusTitle", "statusDate", "statusPgu", "statusCode" }) public class SystemParams { @XmlElement(name = "app_id") protected long appId; @XmlElement(name = "org_id") protected String orgId; @XmlElement(name = "form_id") protected String formId; @XmlElement(name = "status_title") protected String statusTitle; @XmlElement(name = "status_date", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar statusDate; @XmlElement(name = "status_pgu") protected String statusPgu; @XmlElement(name = "status_code") protected String statusCode; /** * Gets the value of the appId property. * */ public long getAppId() { return appId; } /** * Sets the value of the appId property. * */ public void setAppId(long value) { this.appId = value; } /** * Gets the value of the orgId property. * * @return * possible object is * {@link String } * */ public String getOrgId() { return orgId; } /** * Sets the value of the orgId property. * * @param value * allowed object is * {@link String } * */ public void setOrgId(String value) { this.orgId = value; } /** * Gets the value of the formId property. * * @return * possible object is * {@link String } * */ public String getFormId() { return formId; } /** * Sets the value of the formId property. * * @param value * allowed object is * {@link String } * */ public void setFormId(String value) { this.formId = value; } /** * Gets the value of the statusTitle property. * * @return * possible object is * {@link String } * */ public String getStatusTitle() { return statusTitle; } /** * Sets the value of the statusTitle property. * * @param value * allowed object is * {@link String } * */ public void setStatusTitle(String value) { this.statusTitle = value; } /** * Gets the value of the statusDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStatusDate() { return statusDate; } /** * Sets the value of the statusDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStatusDate(XMLGregorianCalendar value) { this.statusDate = value; } /** * Gets the value of the statusPgu property. * * @return * possible object is * {@link String } * */ public String getStatusPgu() { return statusPgu; } /** * Sets the value of the statusPgu property. * * @param value * allowed object is * {@link String } * */ public void setStatusPgu(String value) { this.statusPgu = value; } /** * Gets the value of the statusCode property. * * @return * possible object is * {@link String } * */ public String getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link String } * */ public void setStatusCode(String value) { this.statusCode = value; } }