Interface ResourceResolverFactory
- All Known Subinterfaces:
MapConfigurationProvider
ResourceResolverFactory defines the service API to get and
create ResourceResolvers.
As soon as the resource resolver is not used anymore,
ResourceResolver.close() should be called.
All resource resolvers returned by the same resource resolver factory must use the same search path
- Since:
- 2.1 (Sling API Bundle 2.1.0)
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringName of the authentication information property providing the new password of the user for which to create a resource resolver and change the password during login.static final StringName of the authentication information property providing the password of the user for which to create a resource resolver.static final StringName of the authentication information property providing the Subservice Name for the service requesting a resource resolver.static final StringName of the authentication information property providing the name of the user for which thegetResourceResolver(Map)method creates resource resolvers.static final StringName of the authentication information property causing thegetResourceResolver(Map),getAdministrativeResourceResolver(Map), andgetServiceResourceResolver(Map)methods to try to impersonate the created resource resolver to the requested user and return the impersonated resource resolver. -
Method Summary
Modifier and TypeMethodDescription@NotNull ResourceResolvergetAdministrativeResourceResolver(Map<String, Object> authenticationInfo) Deprecated.as of 2.4 (bundle version 2.5.0) because of inherent security issues.@NotNull ResourceResolvergetResourceResolver(Map<String, Object> authenticationInfo) Returns a newResourceResolverinstance with further configuration taken from the givenauthenticationInfomap.Returns the search path used by the resource resolvers to search for resources by relative path.@NotNull ResourceResolvergetServiceResourceResolver(Map<String, Object> authenticationInfo) Returns a newResourceResolverinstance with privileges assigned to the service provided by the calling bundle.@Nullable ResourceResolverReturns theResourceResolverfor the current thread.
-
Field Details
-
USER
Name of the authentication information property providing the name of the user for which thegetResourceResolver(Map)method creates resource resolvers. This property may be missing in which case an anonymous (unauthenticated) resource resolver is returned if possible.The type of this property, if present, is
String.- See Also:
-
PASSWORD
Name of the authentication information property providing the password of the user for which to create a resource resolver. If this property is missing an empty password is assumed.The type of this property, if present, is
char[].- See Also:
-
NEW_PASSWORD
Name of the authentication information property providing the new password of the user for which to create a resource resolver and change the password during login.The type of this property, if present, is
String.- Since:
- 2.7 (Sling API Bundle 2.9.0)
- See Also:
-
USER_IMPERSONATION
Name of the authentication information property causing thegetResourceResolver(Map),getAdministrativeResourceResolver(Map), andgetServiceResourceResolver(Map)methods to try to impersonate the created resource resolver to the requested user and return the impersonated resource resolver.If this impersonation fails the actual creation of the resource resolver fails and a
LoginExceptionis thrown.If this property is not set in the authentication info or is set to the same name as the
user.nameproperty this property is ignored.The type of this property, if present, is
String.- See Also:
-
SUBSERVICE
Name of the authentication information property providing the Subservice Name for the service requesting a resource resolver.The type of this property, if present, is
String.- Since:
- 2.4 (Sling API Bundle 2.5.0)
- See Also:
-
-
Method Details
-
getResourceResolver
@NotNull @NotNull ResourceResolver getResourceResolver(Map<String, Object> authenticationInfo) throws LoginExceptionReturns a newResourceResolverinstance with further configuration taken from the givenauthenticationInfomap. Generally this map will contain a user name and password to authenticate.If the
authenticationInfomap isnulltheResourceResolverreturned will generally not be authenticated and only provide minimal privileges, if any at all.The
USER_IMPERSONATIONproperty is obeyed but requires that the actual user has permission to impersonate as the requested user. If such permission is missing, aLoginExceptionis thrown.- Parameters:
authenticationInfo- A map of further credential information which may be used by the implementation to parameterize how the resource resolver is created. This may benull.- Returns:
- A
ResourceResolveraccording to theauthenticationInfo. - Throws:
LoginException- If an error occurs creating the newResourceResolverwith the provided credential data.
-
getAdministrativeResourceResolver
@Deprecated @NotNull @NotNull ResourceResolver getAdministrativeResourceResolver(Map<String, Object> authenticationInfo) throws LoginExceptionDeprecated.as of 2.4 (bundle version 2.5.0) because of inherent security issues. Services requiring specific permissions should use thegetServiceResourceResolver(Map)instead.Returns a newResourceResolverinstance with administrative privileges with further configuration taken from the givenauthenticationInfomap.Note, that if the
authenticationInfomap contains theUSER_IMPERSONATIONattribute theResourceResolverreturned will only have administrative privileges if the user identified by the property has administrative privileges.NOTE: This method is intended for use by infrastructure bundles to access the repository and provide general services. This method MUST not be used to handle client requests of whatever kinds. To handle client requests a regular authenticated resource resolver retrieved through
getResourceResolver(Map)must be used.This method is deprecated. Services running in the Sling system should use the
getServiceResourceResolver(Map)method instead. Implementations of this method should throwLoginExceptionif they don't support it.- Parameters:
authenticationInfo- A map of further credential information which may be used by the implementation to parameterize how the resource resolver is created. This may benull.- Returns:
- A
ResourceResolverwith administrative privileges unless theUSER_IMPERSONATIONwas set in theauthenticationInfo. - Throws:
LoginException- If an error occurs creating the newResourceResolverwith the provided credential data.
-
getServiceResourceResolver
@NotNull @NotNull ResourceResolver getServiceResourceResolver(Map<String, Object> authenticationInfo) throws LoginExceptionReturns a newResourceResolverinstance with privileges assigned to the service provided by the calling bundle.The provided
authenticationInfomap may be used to provide additional information such as the "sling.service.subservice".USERandPASSWORDproperties provided in the map are ignored.The
USER_IMPERSONATIONproperty is obeyed but requires that the actual service user has permission to impersonate as the requested user. If such permission is missing, aLoginExceptionis thrown.- Parameters:
authenticationInfo- A map of further service information which may be used by the implementation to parameterize how the resource resolver is created. This may benull.- Returns:
- A
ResourceResolverwith appropriate permissions to execute the service. - Throws:
LoginException- If an error occurs creating the newResourceResolverfor the service represented by the calling bundle.- Since:
- 2.4 (Sling API Bundle 2.5.0) to replace
getAdministrativeResourceResolver(Map) - See Also:
-
getThreadResourceResolver
Returns theResourceResolverfor the current thread.Each resource resolver created by
getResourceResolver(Map)is associated with the thread of its creation time. From within this thread, this method returns the last non-closed resource resolver. When a resource resolver is closed, the association is removed.This will never return a resource resolver being created via
getAdministrativeResourceResolver(Map)nor viagetServiceResourceResolver(Map).- Returns:
- A
ResourceResolvercreated from the current thread ornull. - Since:
- 2.6 (Sling API Bundle 2.8.0)
-
getSearchPath
Returns the search path used by the resource resolvers to search for resources by relative path. If no search path is set an empty list is returned.Each entry in the list is an absolute path terminated with a slash character. Thus to create an absolute path from a search path entry and a relative path, the search path entry and relative path may just be concatenated.
- Returns:
- An immutable list containing the search path
- Since:
- 2.11 (Sling API Bundle 2.18.0)
-