Class AbstractMethodSecurityMetadataSource

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected org.apache.commons.logging.Log logger  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Collection<ConfigAttribute> getAttributes​(java.lang.Object object)
      Accesses the ConfigAttributes that apply to a given secure object.
      boolean supports​(java.lang.Class<?> clazz)
      Indicates whether the SecurityMetadataSource implementation is able to provide ConfigAttributes for the indicated secure object type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • logger

        protected final org.apache.commons.logging.Log logger
    • Constructor Detail

      • AbstractMethodSecurityMetadataSource

        public AbstractMethodSecurityMetadataSource()
    • Method Detail

      • getAttributes

        public final java.util.Collection<ConfigAttribute> getAttributes​(java.lang.Object object)
        Description copied from interface: SecurityMetadataSource
        Accesses the ConfigAttributes that apply to a given secure object.
        Specified by:
        getAttributes in interface SecurityMetadataSource
        Parameters:
        object - the object being secured
        Returns:
        the attributes that apply to the passed in secured object. Should return an empty collection if there are no applicable attributes.
      • supports

        public final boolean supports​(java.lang.Class<?> clazz)
        Description copied from interface: SecurityMetadataSource
        Indicates whether the SecurityMetadataSource implementation is able to provide ConfigAttributes for the indicated secure object type.
        Specified by:
        supports in interface SecurityMetadataSource
        Parameters:
        clazz - the class that is being queried
        Returns:
        true if the implementation can process the indicated class