DeleteList.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
  3. // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2024.11.20 at 11:11:28 AM UTC
  6. //


  7. package org.gringlobal.soap.model;

  8. import javax.xml.bind.annotation.XmlAccessType;
  9. import javax.xml.bind.annotation.XmlAccessorType;
  10. import javax.xml.bind.annotation.XmlRootElement;
  11. import javax.xml.bind.annotation.XmlType;


  12. /**
  13.  * <p>Java class for anonymous complex type.
  14.  *
  15.  * <p>The following schema fragment specifies the expected content contained within this class.
  16.  *
  17.  * <pre>
  18.  * &lt;complexType&gt;
  19.  *   &lt;complexContent&gt;
  20.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21.  *       &lt;sequence&gt;
  22.  *         &lt;element name="suppressExceptions" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
  23.  *         &lt;element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  24.  *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  25.  *         &lt;element name="groupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  26.  *         &lt;element name="tabName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  27.  *         &lt;element name="cooperatorID" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
  28.  *       &lt;/sequence&gt;
  29.  *     &lt;/restriction&gt;
  30.  *   &lt;/complexContent&gt;
  31.  * &lt;/complexType&gt;
  32.  * </pre>
  33.  *
  34.  *
  35.  */
  36. @XmlAccessorType(XmlAccessType.FIELD)
  37. @XmlType(name = "", propOrder = {
  38.     "suppressExceptions",
  39.     "userName",
  40.     "password",
  41.     "groupName",
  42.     "tabName",
  43.     "cooperatorID"
  44. })
  45. @XmlRootElement(name = "DeleteList")
  46. public class DeleteList {

  47.     protected boolean suppressExceptions;
  48.     protected String userName;
  49.     protected String password;
  50.     protected String groupName;
  51.     protected String tabName;
  52.     protected int cooperatorID;

  53.     /**
  54.      * Gets the value of the suppressExceptions property.
  55.      *
  56.      */
  57.     public boolean isSuppressExceptions() {
  58.         return suppressExceptions;
  59.     }

  60.     /**
  61.      * Sets the value of the suppressExceptions property.
  62.      *
  63.      */
  64.     public void setSuppressExceptions(boolean value) {
  65.         this.suppressExceptions = value;
  66.     }

  67.     /**
  68.      * Gets the value of the userName property.
  69.      *
  70.      * @return
  71.      *     possible object is
  72.      *     {@link String }
  73.      *    
  74.      */
  75.     public String getUserName() {
  76.         return userName;
  77.     }

  78.     /**
  79.      * Sets the value of the userName property.
  80.      *
  81.      * @param value
  82.      *     allowed object is
  83.      *     {@link String }
  84.      *    
  85.      */
  86.     public void setUserName(String value) {
  87.         this.userName = value;
  88.     }

  89.     /**
  90.      * Gets the value of the password property.
  91.      *
  92.      * @return
  93.      *     possible object is
  94.      *     {@link String }
  95.      *    
  96.      */
  97.     public String getPassword() {
  98.         return password;
  99.     }

  100.     /**
  101.      * Sets the value of the password property.
  102.      *
  103.      * @param value
  104.      *     allowed object is
  105.      *     {@link String }
  106.      *    
  107.      */
  108.     public void setPassword(String value) {
  109.         this.password = value;
  110.     }

  111.     /**
  112.      * Gets the value of the groupName property.
  113.      *
  114.      * @return
  115.      *     possible object is
  116.      *     {@link String }
  117.      *    
  118.      */
  119.     public String getGroupName() {
  120.         return groupName;
  121.     }

  122.     /**
  123.      * Sets the value of the groupName property.
  124.      *
  125.      * @param value
  126.      *     allowed object is
  127.      *     {@link String }
  128.      *    
  129.      */
  130.     public void setGroupName(String value) {
  131.         this.groupName = value;
  132.     }

  133.     /**
  134.      * Gets the value of the tabName property.
  135.      *
  136.      * @return
  137.      *     possible object is
  138.      *     {@link String }
  139.      *    
  140.      */
  141.     public String getTabName() {
  142.         return tabName;
  143.     }

  144.     /**
  145.      * Sets the value of the tabName property.
  146.      *
  147.      * @param value
  148.      *     allowed object is
  149.      *     {@link String }
  150.      *    
  151.      */
  152.     public void setTabName(String value) {
  153.         this.tabName = value;
  154.     }

  155.     /**
  156.      * Gets the value of the cooperatorID property.
  157.      *
  158.      */
  159.     public int getCooperatorID() {
  160.         return cooperatorID;
  161.     }

  162.     /**
  163.      * Sets the value of the cooperatorID property.
  164.      *
  165.      */
  166.     public void setCooperatorID(int value) {
  167.         this.cooperatorID = value;
  168.     }

  169. }