Class NestedAuthorizableResource

All Implemented Interfaces:
Adaptable, Resource

@Adaptable(adaptableClass=Resource.class,adapters={@Adapter({java.util.Map.class,ValueMap.class,org.apache.jackrabbit.api.security.user.Authorizable.class}),@Adapter(condition="If the resource is an AuthorizableResource and represents a JCR User",value=org.apache.jackrabbit.api.security.user.User.class),@Adapter(condition="If the resource is an AuthorizableResource and represents a JCR Group",value=org.apache.jackrabbit.api.security.user.Group.class)}) public class NestedAuthorizableResource extends AuthorizableResource
Resource implementation for nested property containers of Authorizable
  • Constructor Details

    • NestedAuthorizableResource

      public NestedAuthorizableResource(org.apache.jackrabbit.api.security.user.Authorizable authorizable, ResourceResolver resourceResolver, String path, SystemUserManagerPaths systemUserManagerPaths, String relPropPath)
  • Method Details

    • toResourceType

      protected String toResourceType(org.apache.jackrabbit.api.security.user.Authorizable authorizable)
      Description copied from class: AuthorizableResource
      determine the resource type for the authorizable.
      Overrides:
      toResourceType in class AuthorizableResource
      Parameters:
      authorizable - the authorizable to consider
      Returns:
      the resource type
    • adaptTo

      public <T> T adaptTo(Class<T> type)
      Description copied from class: SlingAdaptable
      Calls into the registered AdapterManager to adapt this object to the desired type.

      This method implements a cache of adapters to improve performance. That is repeated calls to this method with the same class will result in the same object to be returned.

      Specified by:
      adaptTo in interface Adaptable
      Overrides:
      adaptTo in class AuthorizableResource
      Type Parameters:
      T - The generic type to which this resource is adapted to
      Parameters:
      type - The Class object of the target type, such as javax.jcr.Node.class or java.io.File.class
      Returns:
      The adapter target or null if the resource cannot adapt to the requested type