Uses of Class
org.liquidsite.core.content.Domain

Packages that use Domain
org.liquidsite.app.admin   
org.liquidsite.app.admin.view   
org.liquidsite.core.content   
org.liquidsite.core.web   
 

Uses of Domain in org.liquidsite.app.admin
 

Methods in org.liquidsite.app.admin with parameters of type Domain
static java.io.File AdminUtils.getStatisticsDir(Domain domain)
          Returns the statistics directory for a domain.
 

Uses of Domain in org.liquidsite.app.admin.view
 

Methods in org.liquidsite.app.admin.view with parameters of type Domain
 java.lang.String ScriptView.getTreeViewSelect(Domain domain)
          Returns the JavaScript for selecting an item in a tree view.
 java.lang.String ScriptView.getTreeView(Domain[] domains)
          Returns the JavaScript for presenting a tree view.
 java.lang.String ScriptView.getTreeView(Domain domain, Content[] children, boolean open)
          Returns the JavaScript for presenting a tree view.
 java.lang.String ScriptView.getObjectView(User user, Domain domain, java.lang.String view)
          Returns the JavaScript for presenting an object view.
 void UserView.viewEditUser(Request request, Domain domain, User user)
          Shows the add or edit user page.
 void SiteView.viewEditDomain(Request request, PersistentObject parent, Domain domain)
          Shows the add or edit domain page.
protected  java.util.ArrayList AdminView.findTemplates(User user, Domain domain, ContentTemplate exclude)
          Finds all content templates in a domain.
protected  java.util.ArrayList AdminView.findSections(User user, Domain domain, ContentSection exclude)
          Finds all content sections in a domain.
protected  java.util.ArrayList AdminView.findForums(User user, Domain domain)
          Finds all content forums in a domain.
protected  java.util.ArrayList AdminView.findGroups(Domain domain, java.lang.String filter)
          Finds the matching groups in a domain.
 

Uses of Domain in org.liquidsite.core.content
 

Methods in org.liquidsite.core.content that return Domain
 Domain Host.getDomain()
          Returns the host domain.
 Domain PermissionList.getDomain()
          Returns the permission reference domain.
 Domain Lock.getDomain()
          Returns the content domain.
 Domain[] ContentManager.getDomains(User user)
          Returns an array of all domains readable by a user.
 Domain ContentManager.getDomain(User user, java.lang.String name)
          Returns a domain with the specified name readable by a user.
 Domain Group.getDomain()
          Returns the group domain.
 Domain User.getDomain()
          Returns the user domain.
 Domain Content.getDomain()
          Returns the content domain.
 

Methods in org.liquidsite.core.content with parameters of type Domain
protected static ContentSite[] ContentSite.findByDomain(ContentManager manager, Domain domain)
          Returns an array of content site in the specified domain.
 Content ContentManager.getContentChild(User user, Domain domain, java.lang.String name)
          Returns the domain root content object with the specified name and highest revision readable by the user.
 Content[] ContentManager.getContentChildren(User user, Domain domain)
          Returns the user readable domain root content objects.
 Content[] ContentManager.getContentChildren(User user, Domain domain, int category)
          Returns the user readable domain root content objects in the specified category.
 PermissionList ContentManager.getPermissions(Domain domain)
          Returns the permission list applicable to a domain object.
 User ContentManager.getUser(Domain domain, java.lang.String name)
          Returns a user with a specified name.
 int ContentManager.getUserCount(Domain domain, java.lang.String filter)
          Returns the number of users in a specified domain.
 User[] ContentManager.getUsers(Domain domain, java.lang.String filter, int startPos, int maxLength)
          Returns an array of users in a specified domain.
 Group ContentManager.getGroup(Domain domain, java.lang.String name)
          Returns a group with a specified name.
 Group[] ContentManager.getGroups(Domain domain, java.lang.String filter)
          Returns an array of groups in a specified domain.
 int Domain.compareTo(Domain domain)
          Compares this object with the specified domain for order.
 

Constructors in org.liquidsite.core.content with parameters of type Domain
ContentTemplate(ContentManager manager, Domain domain)
          Creates a new template with default values.
ContentSelector(Domain domain)
          Creates a new content selector for the specified domain.
Host(ContentManager manager, Domain domain, java.lang.String name)
          Creates a new host with default values.
ContentSection(ContentManager manager, Domain domain)
          Creates a new root section with default values.
ContentSite(ContentManager manager, Domain domain)
          Creates a new site with default values.
PermissionList(ContentManager manager, Domain domain)
          Creates a new empty permission list for a domain.
Group(ContentManager manager, Domain domain, java.lang.String name)
          Creates a new group with default values.
User(ContentManager manager, Domain domain, java.lang.String name)
          Creates a new user with default values.
Content(ContentManager manager, Domain domain, int category)
          Creates a new content object with default values.
ContentSecurityException(User user, java.lang.String op, Domain obj)
          Creates a new content security exception.
 

Uses of Domain in org.liquidsite.core.web
 

Methods in org.liquidsite.core.web that return Domain
 Domain RequestEnvironment.getDomain()
          Returns the domain object.
 

Methods in org.liquidsite.core.web with parameters of type Domain
 void RequestEnvironment.setDomain(Domain domain)
          Sets the domain object.