Skip to content

Commit

Permalink
Added @deprecated javadoc to methods in AuthService.
Browse files Browse the repository at this point in the history
git-svn-id: http://ala.googlecode.com/svn/trunk/ala-web-theme@246 cf76a52e-83f7-1f8e-e3a8-b8364d34af1a
  • Loading branch information
nickdos committed Jun 25, 2014
1 parent bc44cdc commit d3de3b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions grails-app/services/au/org/ala/web/AuthService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ class AuthService {
return getUserForUserId(emailAddress)
}

/**
* @deprecated - use a lookup service e.g. getUserForEmailAddress()
* @return
*/
Map<String, UserDetails> getAllUserNameMap() {
def userListMap = [:]

Expand Down Expand Up @@ -119,6 +123,10 @@ class AuthService {
}


/**
* @deprecated - use a lookup service e.g. getUserForEmailAddress()
* @return
*/
def getAllUserNameList() {
def userList = []
try {
Expand Down

0 comments on commit d3de3b1

Please sign in to comment.