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

org.certificateservices.messages.credmanagement.jaxb.GetTokensResponse Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.03.16 at 03:13:30 PM CET 
//


package org.certificateservices.messages.credmanagement.jaxb;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import org.certificateservices.messages.csmessages.jaxb.CSResponse;
import org.certificateservices.messages.csmessages.jaxb.Token;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/csmessages2_0}CSResponse">
 *       <sequence>
 *         <element name="tokens">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="token" type="{http://certificateservices.org/xsd/csmessages2_0}Token" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="totalMatching" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "tokens", "startIndex", "totalMatching" }) @XmlRootElement(name = "GetTokensResponse") public class GetTokensResponse extends CSResponse { @XmlElement(required = true) protected GetTokensResponse.Tokens tokens; protected Integer startIndex; protected Integer totalMatching; /** * Gets the value of the tokens property. * * @return * possible object is * {@link GetTokensResponse.Tokens } * */ public GetTokensResponse.Tokens getTokens() { return tokens; } /** * Sets the value of the tokens property. * * @param value * allowed object is * {@link GetTokensResponse.Tokens } * */ public void setTokens(GetTokensResponse.Tokens value) { this.tokens = value; } /** * Gets the value of the startIndex property. * * @return * possible object is * {@link Integer } * */ public Integer getStartIndex() { return startIndex; } /** * Sets the value of the startIndex property. * * @param value * allowed object is * {@link Integer } * */ public void setStartIndex(Integer value) { this.startIndex = value; } /** * Gets the value of the totalMatching property. * * @return * possible object is * {@link Integer } * */ public Integer getTotalMatching() { return totalMatching; } /** * Sets the value of the totalMatching property. * * @param value * allowed object is * {@link Integer } * */ public void setTotalMatching(Integer value) { this.totalMatching = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="token" type="{http://certificateservices.org/xsd/csmessages2_0}Token" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "token" }) public static class Tokens { protected List token; /** * Gets the value of the token property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the token property. * *

* For example, to add a new item, do as follows: *

         *    getToken().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Token } * * */ public List getToken() { if (token == null) { token = new ArrayList(); } return this.token; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy