
com.coveo.pushapiclient.DocumentPermissions 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;
public class DocumentPermissions {
/**
* Whether to allow anonymous users in this permission set.
* Default value is false.
*/
public boolean allowAnonymous;
/**
* The list of allowed permissions for this permission set.
*/
public SecurityIdentity[] allowedPermissions;
/**
* The list of denied permissions for this permission set.
*/
public SecurityIdentity[] deniedPermissions;
public DocumentPermissions() {
this.allowAnonymous = true;
this.allowedPermissions = new SecurityIdentity[]{};
this.deniedPermissions = new SecurityIdentity[]{};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy