Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
com.RuntimeCollective.webapps.bean.User

Uses of User in com.RuntimeCollective.webapps.bean
 

Subinterfaces of User in com.RuntimeCollective.webapps.bean
 interface Actor
          Abstract class for all objects that wrap a registered user of a Runtime Webapp.
 interface TrackedUser
          A User whose logins and sessions we track.
 

Classes in com.RuntimeCollective.webapps.bean that implement User
 class SimpleActor
          A simple abstract implementation of the Actor interface that exposes the properties of the underlying User.
 class SimpleTrackedUser
          The default implementation of TrackedUser.
 class SimpleUser
          Simple implementation of the User interface representing a user that has an address.
 

Fields in com.RuntimeCollective.webapps.bean declared as User
protected  User SimpleActor.user
          The User that this actor wraps.
protected  User Session.theUser
          The session's User.
 

Methods in com.RuntimeCollective.webapps.bean that return User
protected  User UserGroup.userFromId(java.lang.Object o)
          Returns a User from an Integer object , if indeed this object is an Integer
 User SimpleActor.getUser()
          Get the User that this Actor wraps.
 User Session.getTheUser()
          Get the session's User.
 User ModeratedExtension.getModeratorUser()
          Gets the User for this ModeratedExtension
static User ModeratedExtension.getModeratorUser(EntityBean bean)
          Gets who, if anybody, is moderating the bean.
static User LoginCookie.getUser(javax.servlet.http.Cookie[] cookies)
          Return the User stored in the COOKIE_NAME cookie
 User AuditedExtension.getCreationUser()
          Get the creationUser.
 User AuditedExtension.getLastModifiedUser()
          Get the lastModifiedUser.
static User AuditInfo.getLastApprovalUser(EntityBean edited)
          Get the last approval user of an edited object.
static User AuditInfo.getLastCreationUser(EntityBean edited)
          Get the last creation user of an edited object.
 User Actor.getUser()
          Get the User that this Actor wraps.
 

Methods in com.RuntimeCollective.webapps.bean with parameters of type User
 boolean TreeExtension.canPerformAction(java.lang.String action, User user)
          Recursive Permission test, which will check the PermissibleExtension of the EntityBean of this TreeExtension, and then (if necessary) do the same on the parent(s).
 void SimpleActor.setUser(User user)
          Set the User that this Actor wraps.
 void Session.setTheUser(User theUser)
          Set the session's User.
static Session Session.logUserIn(User user, javax.servlet.http.HttpServletRequest request)
          Log a user in to the website.
static void Session.deleteExpiredSessionsForUser(User user)
          Delete all expired Sessions for a given User.
 boolean PermissionBean.canEdit(User user)
          Deprecated. This class shouldn't be used anymore - use the Permissions packages instead.
 boolean PermissionBean.canView(User user)
          Deprecated. This class shouldn't be used anymore - use the Permissions packages instead.
 void ModeratedExtension.setModeratorUser(User user)
          Sets the User for this ModeratedExtension
static java.util.List ModeratedExtension.filterModeratedBy(java.util.Iterator beans, User user)
          Filter and keep the EntityBeans which are moderated by the specific User.
static void LoginCookie.setCookie(User cookieUser, javax.servlet.http.HttpServletResponse response)
          Sets a login cookie for a user who wants to be permenantly logged on.
 void AuditedExtension.setCreationUser(User creationUser)
          Set the creationUser.
 void AuditedExtension.setLastModifiedUser(User user)
          Set the lastModifiedUser.
static void AuditedExtension.markAsCreated(EntityBean bean, User user)
          Get or create an AuditedExtension for the bean, sets the Creation data, and save the extension.
static void AuditedExtension.markAsCreated(EntityBean bean, User user, boolean createIfNecessary)
          Get an AuditedExtension for the bean, sets the Creation data, and save the extension.
static void AuditedExtension.markAsEdited(EntityBean bean, User user)
          Get or create an AuditedExtension for the bean, sets the LastModified data, and save the extension.
static void AuditedExtension.markAsEdited(EntityBean bean, User user, boolean createIfNecessary)
          Get an AuditedExtension for the bean, sets the LastModified data, and save the extension.
static void AuditInfo.recordEdit(EntityBean edited, User editor, java.lang.String notes)
           
static java.util.List Address.dirtyGetUserAddresses(User user)
          Get all the addresses of a given User.
 void Actor.setUser(User user)
          Set the User that this Actor wraps.
 

Constructors in com.RuntimeCollective.webapps.bean with parameters of type User
WebFolder(User user)
          Get the webfolder for this user.