mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
Google Doc Integration - The following configuration must be added to your alfresco-global.properties in order to enable the googleeditable repository behaviour: googledocs.username=myuser@bob.com googledocs.password=pwd123pwd googledocs.googleeditable.enabled=true Google Docs Share Integration - Enabled via share-config (see share-config-custom.xml.sample for details) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20018 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
16 lines
218 B
Java
16 lines
218 B
Java
/**
|
|
*
|
|
*/
|
|
package org.alfresco.repo.googledocs;
|
|
|
|
/**
|
|
* Google docs permission context
|
|
*/
|
|
public enum GoogleDocsPermissionContext
|
|
{
|
|
PRIVATE,
|
|
SHARE_READ,
|
|
SHARE_WRITE,
|
|
SHARE_READWRITE
|
|
}
|