We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can get the profile of the authenticated user using the VertxProfileManager (inherited from ProfileManager).
VertxProfileManager
ProfileManager
>> Read the documentation of the ProfileManager component.
Example:
private static List<UserProfile> getUserProfiles(final RoutingContext rc, final SessionStore sessionStore) { final ProfileManager profileManager = new VertxProfileManager(new VertxWebContext(rc, sessionStore), (VertxSessionStore) sessionStore); return profileManager.getProfiles(); }