eu.europa.esig.saml.jaxb.authn.context.PhysicalVerification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specs-saml-assertion Show documentation
Show all versions of specs-saml-assertion Show documentation
Generated sources from the SAML Assertion XML Schemas.
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.11 at 10:51:02 AM CEST
//
package eu.europa.esig.saml.jaxb.authn.context;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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">
* <attribute name="credentialLevel">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="primary"/>
* <enumeration value="secondary"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "PhysicalVerification")
public class PhysicalVerification {
@XmlAttribute(name = "credentialLevel")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String credentialLevel;
/**
* Gets the value of the credentialLevel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCredentialLevel() {
return credentialLevel;
}
/**
* Sets the value of the credentialLevel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCredentialLevel(String value) {
this.credentialLevel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy