Class CrestUserProfileService
- java.lang.Object
 - 
- org.forgerock.openig.tools.userprofile.CrestUserProfileService
 
 
- 
- All Implemented Interfaces:
 UserProfileService
public class CrestUserProfileService extends Object implements UserProfileService
TheCrestUserProfileServiceis responsible for interactions with AM users endpoint using resource version 3.0; since AM v13. 
- 
- 
Constructor Summary
Constructors Constructor Description CrestUserProfileService(RequestHandler requestHandler, Set<String> profileAttributes)Creates a newCrestUserProfileServicewhich is responsible for interactions with AM users endpoint. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Promise<UserProfile,UserProfileException>getUserProfile(Context context, String username)Returns a promise that will be completed with anUserProfileor with anUserProfileExceptionin case of errors. 
 - 
 
- 
- 
Constructor Detail
- 
CrestUserProfileService
public CrestUserProfileService(RequestHandler requestHandler, Set<String> profileAttributes)
Creates a newCrestUserProfileServicewhich is responsible for interactions with AM users endpoint.- Parameters:
 requestHandler- The requestHandler used when interacting with AM users endpoint.profileAttributes- The profile attributes to request.
 
 - 
 
- 
Method Detail
- 
getUserProfile
public Promise<UserProfile,UserProfileException> getUserProfile(Context context, String username)
Description copied from interface:UserProfileServiceReturns a promise that will be completed with anUserProfileor with anUserProfileExceptionin case of errors.- Specified by:
 getUserProfilein interfaceUserProfileService- Parameters:
 context- The request context.username- The username that identifies the user to retrieve the profile attributes for.- Returns:
 - a promise that will be completed with 
UserProfileor with anResourceExceptionin case of errors. 
 
 - 
 
 -