workspace-sharing-widget/src/main/java/org/gcube/portlets/widgets/workspacesharingwidget/shared/ACL_TYPE.java

19 lines
392 B
Java

/**
*
*/
package org.gcube.portlets.widgets.workspacesharingwidget.shared;
/**
* @author Francesco Mangiacrapa
* Feb 27, 2014
*
*/
public enum ACL_TYPE {
ADMINISTRATOR, // "Users are administrators"
READ_ONLY, // "Users can read any file but cannot update/delete"
WRITE_OWNER, //"Users can update/delete only their files"
WRITE_ANY; //"Any user can update/delete any file"
}