java.lang.Object
edu.internet2.middleware.grouperClientExt.org.apache.commons.jexl2.introspection.Sandbox.Names
edu.internet2.middleware.grouperClientExt.org.apache.commons.jexl2.introspection.Sandbox.WhiteSet
Enclosing class:
Sandbox

public static final class Sandbox.WhiteSet extends Sandbox.Names
A white set of names.
  • Constructor Details

    • WhiteSet

      public WhiteSet()
  • Method Details

    • add

      public boolean add(String name)
      Description copied from class: Sandbox.Names
      Adds a name to this set.
      Specified by:
      add in class Sandbox.Names
      Parameters:
      name - the name to add
      Returns:
      true if the name was really added, false if not
    • alias

      public boolean alias(String name, String alias)
      Description copied from class: Sandbox.Names
      Adds an alias to a name to this set.

      This only has an effect on white lists.

      Overrides:
      alias in class Sandbox.Names
      Parameters:
      name - the name to alias
      alias - the alias
      Returns:
      true if the alias was added, false if it was already present
    • get

      public String get(String name)
      Description copied from class: Sandbox.Names
      Whether a given name is allowed or not.
      Overrides:
      get in class Sandbox.Names
      Parameters:
      name - the method/property name to check
      Returns:
      null if not allowed, the actual name to use otherwise