From 20e25cff04d4789f32c888a236b33a08a79fe9b6 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 02 Aug 2012 19:56:17 -0400 Subject: [PATCH] Documentation --- src/com/gitblit/IUserService.java | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/IUserService.java b/src/com/gitblit/IUserService.java index c3573db..8822d02 100644 --- a/src/com/gitblit/IUserService.java +++ b/src/com/gitblit/IUserService.java @@ -46,6 +46,22 @@ * @since 1.0.0 */ boolean supportsCredentialChanges(); + + /** + * Does the user service support changes to user display name? + * + * @return true or false + * @since 1.0.0 + */ + boolean supportsDisplayNameChanges(); + + /** + * Does the user service support changes to user email address? + * + * @return true or false + * @since 1.0.0 + */ + boolean supportsEmailAddressChanges(); /** * Does the user service support changes to team memberships? @@ -68,7 +84,7 @@ * @param model * @return cookie value */ - char[] getCookie(UserModel model); + String getCookie(UserModel model); /** * Authenticate a user based on their cookie. -- Gitblit v1.9.1