package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for PrivateKeyProtectionType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PrivateKeyProtectionType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}KeyActivation" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}KeyStorage" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}KeySharing" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}Extension" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public class PrivateKeyProtectionType extends ExtensionListType { protected KeyActivationType keyActivation; protected KeyStorageType keyStorage; protected KeySharingType keySharing; /** * Gets the value of the keyActivation property. * * @return possible object is {@link KeyActivationType } * */ public KeyActivationType getKeyActivation() { return keyActivation; } /** * Sets the value of the keyActivation property. * * @param value allowed object is {@link KeyActivationType } * */ public void setKeyActivation(KeyActivationType value) { this.keyActivation = value; } /** * Gets the value of the keyStorage property. * * @return possible object is {@link KeyStorageType } * */ public KeyStorageType getKeyStorage() { return keyStorage; } /** * Sets the value of the keyStorage property. * * @param value allowed object is {@link KeyStorageType } * */ public void setKeyStorage(KeyStorageType value) { this.keyStorage = value; } /** * Gets the value of the keySharing property. * * @return possible object is {@link KeySharingType } * */ public KeySharingType getKeySharing() { return keySharing; } /** * Sets the value of the keySharing property. * * @param value allowed object is {@link KeySharingType } * */ public void setKeySharing(KeySharingType value) { this.keySharing = value; } }