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

org.certificateservices.messages.pkimessages.jaxb.GetCredentialResponse Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.09.23 at 02:26:35 PM CEST 
//


package org.certificateservices.messages.pkimessages.jaxb;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for GetCredentialResponse complex type. * *

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

 * <complexType name="GetCredentialResponse">
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/pkimessages1_0}PKIResponse">
 *       <sequence>
 *         <element name="credential" type="{http://certificateservices.org/xsd/pkimessages1_0}Credential"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetCredentialResponse", propOrder = { "credential" }) public class GetCredentialResponse extends PKIResponse { @XmlElement(required = true) protected Credential credential; /** * Gets the value of the credential property. * * @return * possible object is * {@link Credential } * */ public Credential getCredential() { return credential; } /** * Sets the value of the credential property. * * @param value * allowed object is * {@link Credential } * */ public void setCredential(Credential value) { this.credential = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy