use of hudson.security.csrf.CrumbIssuer in project hudson-2.x by hudson.
the class Functions method getCrumbRequestField.
public static String getCrumbRequestField() {
Hudson h = Hudson.getInstance();
CrumbIssuer issuer = h != null ? h.getCrumbIssuer() : null;
return issuer != null ? issuer.getDescriptor().getCrumbRequestField() : "";
}
use of hudson.security.csrf.CrumbIssuer in project hudson-2.x by hudson.
the class Functions method getCrumb.
public static String getCrumb(StaplerRequest req) {
Hudson h = Hudson.getInstance();
CrumbIssuer issuer = h != null ? h.getCrumbIssuer() : null;
return issuer != null ? issuer.getCrumb(req) : "";
}
Aggregations