001package org.nuxeo.box.api.marshalling.dao;
002
003/**
004 * Access level for shared links.
005 */
006public class BoxSharedLinkAccess {
007
008    /**
009     * Open access. Indicates the link can be accessed by anybody.
010     */
011    public final static String OPEN = "open";
012
013    /**
014     * Company access. Indicates the link can only be accessed by accounts within a same company.
015     */
016    public final static String COMPANY = "company";
017
018    /**
019     * Collaborators access.Indicates the link can only be accessed by collaborators.
020     */
021    public final static String COLLABORATORS = "collaborators";
022}