package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for TechnicalProtectionBaseType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TechnicalProtectionBaseType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice minOccurs="0"> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}PrivateKeyProtection"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}SecretKeyProtection"/> * </choice> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}Extension" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public class TechnicalProtectionBaseType extends ExtensionListType { protected PrivateKeyProtectionType privateKeyProtection; protected SecretKeyProtectionType secretKeyProtection; /** * Gets the value of the privateKeyProtection property. * * @return possible object is {@link PrivateKeyProtectionType } * */ public PrivateKeyProtectionType getPrivateKeyProtection() { return privateKeyProtection; } /** * Sets the value of the privateKeyProtection property. * * @param value allowed object is {@link PrivateKeyProtectionType } * */ public void setPrivateKeyProtection(PrivateKeyProtectionType value) { this.privateKeyProtection = value; } /** * Gets the value of the secretKeyProtection property. * * @return possible object is {@link SecretKeyProtectionType } * */ public SecretKeyProtectionType getSecretKeyProtection() { return secretKeyProtection; } /** * Sets the value of the secretKeyProtection property. * * @param value allowed object is {@link SecretKeyProtectionType } * */ public void setSecretKeyProtection(SecretKeyProtectionType value) { this.secretKeyProtection = value; } }