package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for KeySharingType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="KeySharingType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="sharing" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public class KeySharingType { protected boolean sharing; /** * Gets the value of the sharing property. * */ public boolean isSharing() { return sharing; } /** * Sets the value of the sharing property. * */ public void setSharing(boolean value) { this.sharing = value; } }