Class FsShellPermissions.Chmod

All Implemented Interfaces:
Configurable
Enclosing class:
FsShellPermissions

public static class FsShellPermissions.Chmod extends FsShellPermissions
The pattern is almost as flexible as mode allowed by chmod shell command. The main restriction is that we recognize only rwxXt. To reduce errors we also enforce octal mode specifications of either 3 digits without a sticky bit setting or four digits with a sticky bit setting.
  • Field Details

  • Constructor Details

    • Chmod

      public Chmod()
  • Method Details

    • processOptions

      protected void processOptions(LinkedList<String> args) throws IOException
      Description copied from class: Command
      Must be implemented by commands to process the command line flags and check the bounds of the remaining arguments. If an IllegalArgumentException is thrown, the FsShell object will print the short usage of the command.
      Overrides:
      processOptions in class Command
      Parameters:
      args - the command line arguments
      Throws:
      IOException - raised on errors performing I/O.
    • processPath

      protected void processPath(PathData item) throws IOException
      Description copied from class: Command
      Hook for commands to implement an operation to be applied on each path for the command. Note implementation of this method is optional if earlier methods in the chain handle the operation.
      Overrides:
      processPath in class Command
      Parameters:
      item - a PathData object
      Throws:
      IOException - if anything else goes wrong in the user-implementation