package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for SecurityAuditType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SecurityAuditType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}SwitchAudit" 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 SecurityAuditType extends ExtensionListType { protected ExtensionOnlyType switchAudit; /** * Gets the value of the switchAudit property. * * @return possible object is {@link ExtensionOnlyType } * */ public ExtensionOnlyType getSwitchAudit() { return switchAudit; } /** * Sets the value of the switchAudit property. * * @param value allowed object is {@link ExtensionOnlyType } * */ public void setSwitchAudit(ExtensionOnlyType value) { this.switchAudit = value; } }