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

Packages that use UserValueObject
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. 
com.nurelm.util   
 

Uses of UserValueObject in com.nurelm.nucontent.model
 

Methods in com.nurelm.nucontent.model that return UserValueObject
 UserValueObject User.getValueObject()
           
 UserValueObject Site.login(java.lang.String username, java.lang.String password)
           
 

Methods in com.nurelm.nucontent.model with parameters of type UserValueObject
 Page Site.getPageLockIfNeeded(java.lang.String id, UserValueObject userVO, java.lang.String pageURI, boolean isLockable)
          Returns the requested Page, but locks it and returns the working copy instead if necessary.
 Node Site.getNodeLockIfNeeded(java.lang.String id, UserValueObject userVO, java.lang.String pageURI, boolean isLockable)
          Returns the requested Node, but locks it and returns the working copy instead if necessary (if the Node is really a Page.
 boolean Page.isViewable(UserValueObject userVO)
          Determines if the current page is viewable.
 boolean Page.isEditable(UserValueObject userVO)
          The page is editable if it is not locked by another user, and either ...
 boolean Page.isUserInEditorGroup(UserValueObject userVO)
          Used to determine if the user is in a group that can edit this page.
 boolean Page.isChildLinkEditable(UserValueObject userVO, boolean isParentEditable)
          Indicates if this object is editable.
 boolean Page.isChildLinkViewable(UserValueObject userVO, boolean isParentViewable)
          Indicates if this object is viewable.
abstract  boolean Node.isChildLinkEditable(UserValueObject userVo, boolean isParentEditable)
          Returns true if the user represented by the supplied UserValueObject can edit a link to this node.
abstract  boolean Node.isChildLinkViewable(UserValueObject userVo, boolean isParentEditable)
          Returns true if the user represented by the supplied UserValueObject can view a link to this node.
 boolean Link.isChildLinkEditable(UserValueObject userVo, boolean isParentEditable)
           
 boolean Link.isChildLinkViewable(UserValueObject userVo, boolean isParentViewable)
           
 boolean File.isChildLinkEditable(UserValueObject userVo, boolean isParentEditable)
          Used to check if child links are editable.
 boolean File.isChildLinkViewable(UserValueObject userVo, boolean isParentViewable)
          Used to check if child links are editable.
 

Uses of UserValueObject in com.nurelm.util
 

Methods in com.nurelm.util that return UserValueObject
static UserValueObject NuPlatformUtil.getUserVO(javax.servlet.http.HttpServletRequest request)