Class GroovyWhitelist


public class GroovyWhitelist extends Whitelist
  • Constructor Details

    • GroovyWhitelist

      public GroovyWhitelist()
  • Method Details

    • permitsMethod

      public boolean permitsMethod(@NotNull @NotNull Method method, @NotNull @NotNull Object receiver, @NotNull @NotNull Object[] args)
      Description copied from class: Whitelist
      Checks whether a given virtual method may be invoked.

      Note that method should not be implementing or overriding a method in a supertype; in such a case the caller must pass that supertype method instead. In other words, call site selection is the responsibility of the caller (such as StandardGroovySandbox), not the whitelist.

      Specified by:
      permitsMethod in class Whitelist
      Parameters:
      method - a method defined in the JVM
      receiver - this, the receiver of the method call
      args - zero or more arguments
      Returns:
      true to allow the method to be called, false to reject it
    • permitsConstructor

      public boolean permitsConstructor(@NotNull @NotNull Constructor<?> constructor, @NotNull @NotNull Object[] args)
      Specified by:
      permitsConstructor in class Whitelist
    • permitsStaticMethod

      public boolean permitsStaticMethod(@NotNull @NotNull Method method, @NotNull @NotNull Object[] args)
      Specified by:
      permitsStaticMethod in class Whitelist
    • permitsFieldGet

      public boolean permitsFieldGet(@NotNull @NotNull Field field, @NotNull @NotNull Object receiver)
      Specified by:
      permitsFieldGet in class Whitelist
    • permitsFieldSet

      public boolean permitsFieldSet(@NotNull @NotNull Field field, @NotNull @NotNull Object receiver, Object value)
      Specified by:
      permitsFieldSet in class Whitelist
    • permitsStaticFieldGet

      public boolean permitsStaticFieldGet(@NotNull @NotNull Field field)
      Specified by:
      permitsStaticFieldGet in class Whitelist
    • permitsStaticFieldSet

      public boolean permitsStaticFieldSet(@NotNull @NotNull Field field, Object value)
      Specified by:
      permitsStaticFieldSet in class Whitelist