com.coveo.pushapiclient.SourceVisibility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of push-api-client.java Show documentation
Show all versions of push-api-client.java Show documentation
Coveo Push API client. See more on https://github.com/coveo/push-api-client.java
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