Uses of Class
com.nurelm.nucontent.model.User

Packages that use User
com.nurelm.nucontent.model This package provides an object oriented interface to NuContent's data model from which any piece of content in an entire NuContent-powered site can be accessed or modified. 
 

Uses of User in com.nurelm.nucontent.model
 

Fields in com.nurelm.nucontent.model declared as User
 User ReviewRule.reviewer
           
 

Methods in com.nurelm.nucontent.model that return User
 User Task.getAssignedTo()
           
 User Task.getAssignedBy()
           
 User Site.getUser(java.lang.String username)
           
 User Site.createUser(java.lang.String username)
           
 User Page.getLockingUser()
          Returns the User who has this page locked.
 

Methods in com.nurelm.nucontent.model with parameters of type User
 void Task.setAssignedTo(User assignedTo)
           
 void Task.setAssignedBy(User assignedBy)
           
 Page Page.lock(java.util.Date requestedCompletionDate, User assignedTo, User assignedBy, java.lang.String pageURI, java.lang.String comment)
          Checks out, or "locks" a page.
 void Page.unlockAndSave(javax.servlet.ServletContext sc, java.lang.String comment, java.lang.String reviewType, User user)
          If this page does not require a review, unlocks the current page if it's locked, makes the working copy page the live page, and puts the old page into the version list; if the page does require review, redirects to assignReviewer.
 void Page.unlockAndSave(javax.servlet.ServletContext sc, java.lang.String comment, java.lang.String reviewType, User user, boolean reviewTypeExt, boolean doreview)
          If this page does not require a review, unlocks the current page if it's locked, makes the working copy page the live page, and puts the old page into the version list; if the page does require review and review-exten turn on then redirects to assignReviewers.
 void Page.unlockAndCancel(javax.servlet.ServletContext sc, java.lang.String comment, User user)
          Unlocks the current Page and discards all edits that have been made to its working copy.
 void Page.addOpenTask(int type, java.util.Date requestedCompletionDate, User assignedTo, User assignedBy, java.lang.String comment)
          Adds a new, open task to the current page.
 void Page.addOpenTaskWithOutClosePreviousTask(int type, java.util.Date requestedCompletionDate, User assignedTo, User assignedBy, java.lang.String comment)
          Adds a new, open task to the current page.
 

Constructors in com.nurelm.nucontent.model with parameters of type User
Task(int type, java.util.Date assignedDate, java.util.Date requestedCompletionDate, java.util.Date actualCompletionDate, User assignedTo, User assignedBy, java.lang.String comment)
          Creates a new Task.