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

org.certificateservices.messages.credmanagement.jaxb.CredentialAvailableActionsOperation 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.02.02 at 11:17:20 AM CET 
//


package org.certificateservices.messages.credmanagement.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CredentialAvailableActionsOperation complex type. * *

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

 * <complexType name="CredentialAvailableActionsOperation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="type" type="{http://certificateservices.org/xsd/credmanagement2_0}CredentialAvailableActionType"/>
 *         <element name="available" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="message" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CredentialAvailableActionsOperation", propOrder = { "type", "available", "message" }) public class CredentialAvailableActionsOperation { @XmlElement(required = true) @XmlSchemaType(name = "string") protected CredentialAvailableActionType type; protected boolean available; @XmlElement(required = true) protected String message; /** * Gets the value of the type property. * * @return * possible object is * {@link CredentialAvailableActionType } * */ public CredentialAvailableActionType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link CredentialAvailableActionType } * */ public void setType(CredentialAvailableActionType value) { this.type = value; } /** * Gets the value of the available property. * */ public boolean isAvailable() { return available; } /** * Sets the value of the available property. * */ public void setAvailable(boolean value) { this.available = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy