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

org.certificateservices.messages.autoenroll.jaxb.PerformedFetchExistingTokensAction 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.02 at 11:08:13 AM CET 
//


package org.certificateservices.messages.autoenroll.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.certificateservices.messages.csmessages.jaxb.Credential;


/**
 * 

Java class for PerformedFetchExistingTokensAction complex type. * *

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

 * <complexType name="PerformedFetchExistingTokensAction">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="wrappingCredential" type="{http://certificateservices.org/xsd/csmessages2_0}Credential" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PerformedFetchExistingTokensAction", propOrder = { "wrappingCredential" }) public class PerformedFetchExistingTokensAction { protected Credential wrappingCredential; /** * Gets the value of the wrappingCredential property. * * @return * possible object is * {@link Credential } * */ public Credential getWrappingCredential() { return wrappingCredential; } /** * Sets the value of the wrappingCredential property. * * @param value * allowed object is * {@link Credential } * */ public void setWrappingCredential(Credential value) { this.wrappingCredential = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy