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

org.certificateservices.messages.csagent.jaxb.DiscoveredCredentialsRequest 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: 2018.01.04 at 04:35:43 PM MSK 
//


package org.certificateservices.messages.csagent.jaxb;

import java.util.ArrayList;
import java.util.List;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.certificateservices.messages.csmessages.jaxb.CSRequest;


/**
 * 

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}CSRequest">
 *       <sequence>
 *         <element name="agentId" type="{http://certificateservices.org/xsd/csmessages2_0}between1and250string"/>
 *         <element name="scanId" type="{http://certificateservices.org/xsd/csmessages2_0}uuid"/>
 *         <element name="scanTimeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="discoveredCredentials">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="dc" type="{http://certificateservices.org/xsd/cs_agent_protocol2_0}DiscoveredCredential" maxOccurs="100"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "agentId", "scanId", "scanTimeStamp", "discoveredCredentials" }) @XmlRootElement(name = "DiscoveredCredentialsRequest") public class DiscoveredCredentialsRequest extends CSRequest { @XmlElement(required = true) protected String agentId; @XmlElement(required = true) protected String scanId; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar scanTimeStamp; @XmlElement(required = true) protected DiscoveredCredentialsRequest.DiscoveredCredentials discoveredCredentials; /** * Gets the value of the agentId property. * * @return * possible object is * {@link String } * */ public String getAgentId() { return agentId; } /** * Sets the value of the agentId property. * * @param value * allowed object is * {@link String } * */ public void setAgentId(String value) { this.agentId = value; } /** * Gets the value of the scanId property. * * @return * possible object is * {@link String } * */ public String getScanId() { return scanId; } /** * Sets the value of the scanId property. * * @param value * allowed object is * {@link String } * */ public void setScanId(String value) { this.scanId = value; } /** * Gets the value of the scanTimeStamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getScanTimeStamp() { return scanTimeStamp; } /** * Sets the value of the scanTimeStamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setScanTimeStamp(XMLGregorianCalendar value) { this.scanTimeStamp = value; } /** * Gets the value of the discoveredCredentials property. * * @return * possible object is * {@link DiscoveredCredentialsRequest.DiscoveredCredentials } * */ public DiscoveredCredentialsRequest.DiscoveredCredentials getDiscoveredCredentials() { return discoveredCredentials; } /** * Sets the value of the discoveredCredentials property. * * @param value * allowed object is * {@link DiscoveredCredentialsRequest.DiscoveredCredentials } * */ public void setDiscoveredCredentials(DiscoveredCredentialsRequest.DiscoveredCredentials value) { this.discoveredCredentials = 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="dc" type="{http://certificateservices.org/xsd/cs_agent_protocol2_0}DiscoveredCredential" maxOccurs="100"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dc" }) public static class DiscoveredCredentials { @XmlElement(required = true) protected List dc; /** * Gets the value of the dc 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 dc property. * *

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

         *    getDc().add(newItem);
         * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy