Tabnine Logo
AccessControlList.removeEntry
Code IndexAdd Tabnine to your IDE (free)

How to use
removeEntry
method
in
alluxio.security.authorization.AccessControlList

Best Java code snippets using alluxio.security.authorization.AccessControlList.removeEntry (Showing top 2 results out of 315)

origin: Alluxio/alluxio

/**
 * Removes ACL entries.
 *
 * @param entries the ACL entries to remove
 * @return the updated object
 */
public T removeAcl(List<AclEntry> entries) {
 for (AclEntry entry : entries) {
  if (entry.isDefault()) {
   AccessControlList defaultAcl = getDefaultACL();
   defaultAcl.removeEntry(entry);
  } else {
   mAcl.removeEntry(entry);
  }
 }
 updateMask(entries);
 return getThis();
}
origin: Alluxio/alluxio

case NAMED_GROUP:
case MASK:
 super.removeEntry(entry);
 return;
case OWNING_USER:
alluxio.security.authorizationAccessControlListremoveEntry

Javadoc

Removes the specified entry. A base entry is not allowed to be removed.

Popular methods of AccessControlList

  • <init>
    Creates a new instance where owning user and owning group are initialized to empty strings, and no a
  • getEntries
    Returns a list of AclEntry which represent this ACL instance. The mask will only be included if exte
  • getOwningGroup
  • getOwningUser
  • hasExtended
  • setEntry
    Sets an entry into the access control list. If an entry with the same type and subject already exist
  • setOwningGroup
    Sets owning group.
  • setOwningUser
    Sets owning user.
  • getMode
  • getPermission
    Gets the permitted actions for a user. When AccessControlList is not modified after calling getPermi
  • setMode
    Sets permitted actions for owning user, owning group, and other based on the mode. The format of mod
  • toString
  • setMode,
  • toString,
  • toStringEntries,
  • checkPermission,
  • clearEntries,
  • fromStringEntries,
  • getOtherActions,
  • getOwningGroupActions,
  • getOwningUserActions

Popular in Java

  • Running tasks concurrently on multiple threads
  • setContentView (Activity)
  • getResourceAsStream (ClassLoader)
  • getSystemService (Context)
  • Menu (java.awt)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • JButton (javax.swing)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now