java.lang.Object
org.jenkinsci.plugins.scriptsecurity.sandbox.Whitelist
Direct Known Subclasses:
ClassLoaderWhitelist, EnumeratingWhitelist, PermitAllWhitelist

public abstract class Whitelist extends Object
Determines which methods and similar members which scripts may call.
  • Constructor Details

    • Whitelist

      public Whitelist()
  • Method Details

    • permitsMethod

      public abstract boolean permitsMethod(@Nonnull Method method, @Nonnull Object receiver, @Nonnull Object[] args)
      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 GroovySandbox), not the 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 abstract boolean permitsConstructor(@Nonnull Constructor<?> constructor, @Nonnull Object[] args)
    • permitsStaticMethod

      public abstract boolean permitsStaticMethod(@Nonnull Method method, @Nonnull Object[] args)
    • permitsFieldGet

      public abstract boolean permitsFieldGet(@Nonnull Field field, @Nonnull Object receiver)
    • permitsFieldSet

      public abstract boolean permitsFieldSet(@Nonnull Field field, @Nonnull Object receiver, @CheckForNull Object value)
    • permitsStaticFieldGet

      public abstract boolean permitsStaticFieldGet(@Nonnull Field field)
    • permitsStaticFieldSet

      public abstract boolean permitsStaticFieldSet(@Nonnull Field field, @CheckForNull Object value)