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

org.certificateservices.messages.credmanagement.jaxb.ChangeUserStatusRequest 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: 2019.04.03 at 10:28:03 AM CEST 
//


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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
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="userUniqueId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="tokenFilter" type="{http://certificateservices.org/xsd/credmanagement2_0}TokenFilter" minOccurs="0"/>
 *         <element name="credentialFilter" type="{http://certificateservices.org/xsd/credmanagement2_0}CredentialFilter" minOccurs="0"/>
 *         <element name="newCredentialStatus" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="reasonInformation" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "userUniqueId", "tokenFilter", "credentialFilter", "newCredentialStatus", "reasonInformation" }) @XmlRootElement(name = "ChangeUserStatusRequest") public class ChangeUserStatusRequest extends CSRequest { @XmlElement(required = true) protected String userUniqueId; protected TokenFilter tokenFilter; protected CredentialFilter credentialFilter; protected int newCredentialStatus; @XmlElement(required = true) protected String reasonInformation; /** * Gets the value of the userUniqueId property. * * @return * possible object is * {@link String } * */ public String getUserUniqueId() { return userUniqueId; } /** * Sets the value of the userUniqueId property. * * @param value * allowed object is * {@link String } * */ public void setUserUniqueId(String value) { this.userUniqueId = value; } /** * Gets the value of the tokenFilter property. * * @return * possible object is * {@link TokenFilter } * */ public TokenFilter getTokenFilter() { return tokenFilter; } /** * Sets the value of the tokenFilter property. * * @param value * allowed object is * {@link TokenFilter } * */ public void setTokenFilter(TokenFilter value) { this.tokenFilter = value; } /** * Gets the value of the credentialFilter property. * * @return * possible object is * {@link CredentialFilter } * */ public CredentialFilter getCredentialFilter() { return credentialFilter; } /** * Sets the value of the credentialFilter property. * * @param value * allowed object is * {@link CredentialFilter } * */ public void setCredentialFilter(CredentialFilter value) { this.credentialFilter = value; } /** * Gets the value of the newCredentialStatus property. * */ public int getNewCredentialStatus() { return newCredentialStatus; } /** * Sets the value of the newCredentialStatus property. * */ public void setNewCredentialStatus(int value) { this.newCredentialStatus = value; } /** * Gets the value of the reasonInformation property. * * @return * possible object is * {@link String } * */ public String getReasonInformation() { return reasonInformation; } /** * Sets the value of the reasonInformation property. * * @param value * allowed object is * {@link String } * */ public void setReasonInformation(String value) { this.reasonInformation = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy