Class NestedAuthorizableResource
java.lang.Object
org.apache.sling.api.adapter.SlingAdaptable
org.apache.sling.api.resource.AbstractResource
org.apache.sling.jackrabbit.usermanager.impl.resource.BaseResource
org.apache.sling.jackrabbit.usermanager.impl.resource.AuthorizableResource
org.apache.sling.jackrabbit.usermanager.impl.resource.NestedAuthorizableResource
@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
-
Field Summary
Fields inherited from class org.apache.sling.jackrabbit.usermanager.impl.resource.AuthorizableResource
authorizable, systemUserManagerPaths
Fields inherited from class org.apache.sling.jackrabbit.usermanager.impl.resource.BaseResource
resourceResolver
Fields inherited from interface org.apache.sling.api.resource.Resource
RESOURCE_TYPE_NON_EXISTING
-
Constructor Summary
ConstructorDescriptionNestedAuthorizableResource
(org.apache.jackrabbit.api.security.user.Authorizable authorizable, ResourceResolver resourceResolver, String path, SystemUserManagerPaths systemUserManagerPaths, String relPropPath) -
Method Summary
Modifier and TypeMethodDescription<T> T
Calls into the registeredAdapterManager
to adapt this object to the desiredtype
.protected String
toResourceType
(org.apache.jackrabbit.api.security.user.Authorizable authorizable) determine the resource type for the authorizable.Methods inherited from class org.apache.sling.jackrabbit.usermanager.impl.resource.AuthorizableResource
getResourceType, toString
Methods inherited from class org.apache.sling.jackrabbit.usermanager.impl.resource.BaseResource
getPath, getResourceMetadata, getResourceResolver, getResourceSuperType
Methods inherited from class org.apache.sling.api.resource.AbstractResource
getChild, getChildren, getName, getParent, getValueMap, hasChildren, isResourceType, listChildren
Methods inherited from class org.apache.sling.api.adapter.SlingAdaptable
setAdapterManager, unsetAdapterManager
-
Constructor Details
-
NestedAuthorizableResource
public NestedAuthorizableResource(org.apache.jackrabbit.api.security.user.Authorizable authorizable, ResourceResolver resourceResolver, String path, SystemUserManagerPaths systemUserManagerPaths, String relPropPath)
-
-
Method Details
-
toResourceType
Description copied from class:AuthorizableResource
determine the resource type for the authorizable.- Overrides:
toResourceType
in classAuthorizableResource
- Parameters:
authorizable
- the authorizable to consider- Returns:
- the resource type
-
adaptTo
Description copied from class:SlingAdaptable
Calls into the registeredAdapterManager
to adapt this object to the desiredtype
.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 interfaceAdaptable
- Overrides:
adaptTo
in classAuthorizableResource
- Type Parameters:
T
- The generic type to which this resource is adapted to- Parameters:
type
- The Class object of the target type, such asjavax.jcr.Node.class
orjava.io.File.class
- Returns:
- The adapter target or
null
if the resource cannot adapt to the requested type
-