GetMyRights #
Returns the rights for the currently logged in user within the SDK instance.
Arguments #
public CompletableFuture<ArrayList<Object>> getMyRights()
throws NotConnectedException, InternalException
Return #
An ArrayList object.
Usage #
ConcurrentHashMap<String, Object> credentials = new ConcurrentHashMap<>();
credentials.put("username", "foo");
credentials.put("password", "bar");
kuzzle.getAuthController().login("local", credentials).get();
ArrayList<Object> result = kuzzle.getAuthController().getMyRights().get();
Edit this page on Github(opens new window)