mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
MOB-124 First cut of invitation service First cut group site membership git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13378 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
17 lines
468 B
Java
17 lines
468 B
Java
/**
|
|
*
|
|
*/
|
|
package org.alfresco.service.cmr.site;
|
|
|
|
/**
|
|
* Enumeration representing the different site visibilities.
|
|
*
|
|
* @author Roy Wetherall
|
|
*/
|
|
public enum SiteVisibility
|
|
{
|
|
PUBLIC, // Public site. Visible and accessible by all
|
|
MODERATED, // Moderated site. Visible to all, but only accessible via moderated invitation.
|
|
PRIVATE // Private site. Visible and accessible only to members of the site.
|
|
}
|