Uses of Class
org.jickr.User

Uses of User in org.jickr
 

Methods in org.jickr that return User
static User Auth.authenticate()
          Authenticate a a session, after the user has gone to the URL from getAuthURL().
static User User.findByEmail(java.lang.String emailAddr)
          Return a new User object that corresponds to the stated Email Address.
static User User.findByID(java.lang.String id)
          Return a new User object that corresponds to the stated user ID.
static User User.findByURL(java.lang.String userURL)
          Return a new User object that corresponds to the stated URL.
static User User.findByUsername(java.lang.String username)
          Return a new User object that corresponds to the stated username.
static User Auth.getAuthContext()
          Get the AuthContext from this thread.
 User Tag.getAuthor()
          Gets the Author of this tag.
 User Note.getAuthor()
          Get the Author of this note.
 User Comment.getAuthor()
          Get the author of the comment.
static User Auth.getDefaultAuthUser()
          Gets the default authenticated user.
 User PhotoSearch.getUser()
          Get the user in the search term.
 

Methods in org.jickr that return types with arguments of type User
static java.util.List<User> User.getContacts()
          Get a list of users that are contacts for the authenticated user.
 java.util.List<User> User.getPublicContacts()
          Get a list of users who are listed as contacts for this User.
 

Methods in org.jickr with parameters of type User
static Permission Auth.getPermLevel(User user)
          Gets the authentication level for a given user.
static boolean Auth.isAuthenticated(User authUser, Permission perm)
          Returns whether we're authenticated to at least this level.
static void Auth.setAuthContext(User user)
          Set the AuthContext for this thread.
static void Auth.setDefaultAuthUser(User user)
          Sets the default authenticated user, for use in later executions of the program.
 void PhotoSearch.setUser(User user)
          Search for Photos owned by the specified user.