All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coveo.pushapiclient.SourceVisibility Maven / Gradle / Ivy

The newest version!
package com.coveo.pushapiclient;

/**
 * SourceVisibility controls the content security option that should be applied to the items in a source. See https://docs.coveo.com/en/1779/index-content/content-security
 */
public enum SourceVisibility {
    /**
     * Items can be accessed by the source owner only.
     */
    PRIVATE {
        public String toString() {
            return "PRIVATE";
        }
    },
    /**
     * Items can be accessed by allowed users only.
     */
    SECURED {
        public String toString() {
            return "SECURED";
        }
    },
    /**
     * Items can be accessed by any user.
     */
    SHARED {
        public String toString() {
            return "SHARED";
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy