me.setPermission(MemberEntry.Permissions.AUTHOR);
return me;
}
protected static UserEntry updateSampleUserEntry(UserEntry ue) {
UserEntry ueUpdate = new UserEntry(ue.getName(), getEndpointUrl());
ueUpdate.setEmailAddress("billy@bob.org");
ueUpdate.setFullName("Billy Bob");
ueUpdate.setLocale(new Locale("ms", "MY"));
ueUpdate.setTimezone(TimeZone.getTimeZone("Asia/Kuala_Lumpur"));
ueUpdate.setPassword("billy");
ueUpdate.setEnabled(Boolean.FALSE);
return ueUpdate;
}