@Test
public void testAuthenticationLoginResourceResponse() {
AuthenticationLoginResourceResponse resourceResponse = new AuthenticationLoginResourceResponse();
AuthenticationLoginResource loginResource = new AuthenticationLoginResource();
AuthenticationClientPermissions perms = new AuthenticationClientPermissions();
ClientPermission permission = new ClientPermission();
permission.setId("id");
permission.setValue(5);
perms.addPermission(permission);
perms.setLoggedIn(true);
perms.setLoggedInUsername("fred");
loginResource.setClientPermissions(perms);