Hi How can I get a REST Api call which returns a map of map of list?
@GET
@Path("/allusers")
public Map<String, Map<String, List<String>>> getAllUsers() throws
GuacamoleException {
return authenticationService.getAllUsers();
}
Something similar to this:
{ "Tacacs: { "CNS" : ["user1", "user2", "user3" ] } }
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
