All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudbees.groovy.cps.sandbox.Untrusted Maven / Gradle / Ivy

There is a newer version: 1.31
Show newest version
package com.cloudbees.groovy.cps.sandbox;

/**
 * {@link CallSiteTag} to instruct {@link SandboxInvoker} that this code is untrusted and should be under sandbox check.
 *
 * @author Kohsuke Kawaguchi
 * @see Trusted
 */
public class Untrusted implements CallSiteTag {
    // singleton
    private Untrusted() {}

    private Object readResolve() {
        return INSTANCE;
    }

    private static final long serialVersionUID = 1L;

    public static final Untrusted INSTANCE = new Untrusted();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy