package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ public class PhysicalVerification { 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; } }