Codota Logo
Builder.getProjectActions
Code IndexAdd Codota to your IDE (free)

How to use
getProjectActions
method
in
hudson.tasks.Builder

Best Java code snippets using hudson.tasks.Builder.getProjectActions (Showing top 4 results out of 315)

  • Common ways to obtain Builder
private void myMethod () {
Builder b =
  • Codota IconStaplerRequest staplerRequest;JSONObject src;staplerRequest.bindJSON(Maven.class, src)
  • Codota IconIvyBuilderType ivyBuilderType;Properties additionalProperties;List environment;ivyBuilderType.getBuilder(additionalProperties, null, environment)
  • Codota IconIvyBuild ivyBuild;IvyBuild ivyBuild2;List environment;ivyBuild.getProject().getParent().getIvyBuilderType().getBuilder(null, ivyBuild2.getProject().getTargets(), environment)
  • Smart code suggestions by Codota
}
origin: org.jenkins-ci.plugins/python-wrapper

public Collection<? extends Action> superGetProjectActions(AbstractProject<?, ?> project) {
  return super.getProjectActions(project);
}
origin: jenkinsci/jenkins-cloudformation-plugin

@Override
public Collection<? extends Action> getProjectActions(AbstractProject<?, ?> project) {
  LOGGER.info("getProjectActions");
  return super.getProjectActions(project);
}
origin: jenkinsci/maven-plugin

protected List<Action> createTransientActions() {
  List<Action> r = super.createTransientActions();
  // Fix for ISSUE-1149
  for (MavenModule module: modules.values()) {
    module.updateTransientActions();
  }
  
  if(publishers!=null)    // this method can be loaded from within the onLoad method, where this might be null
    for (BuildStep step : publishers)
      r.addAll(step.getProjectActions(this));
  if (buildWrappers!=null)
    for (BuildWrapper step : buildWrappers)
      r.addAll(step.getProjectActions(this));
  
  if (prebuilders!=null)
    for (Builder builder : prebuilders)
      r.addAll(builder.getProjectActions(this));
  if (postbuilders!=null)
    for (Builder builder : postbuilders)
      r.addAll(builder.getProjectActions(this));
  return r;
}
origin: org.jenkins-ci.plugins/python-wrapper

@Override
public Collection<? extends Action> getProjectActions(AbstractProject<?, ?> project) {
  initPython();
  if (pexec.isImplemented(6)) {
    return (Collection) pexec.execPython("get_project_actions", project);
  } else {
    return super.getProjectActions(project);
  }
}
hudson.tasksBuildergetProjectActions

Popular methods of Builder

  • getDescriptor
  • all
    Returns all the registered Builder descriptors.
  • perform
  • getProjectAction
  • prebuild
    Default implementation that does nothing.
  • getRequiredMonitorService
    Returns BuildStepMonitor#NONE by default, as Builders normally don't depend on its previous result.

Popular in Java

  • Updating database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • getContentResolver (Context)
  • findViewById (Activity)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • IOException (java.io)
    Signals that an I/O exception of some sort has occurred. This class is the general class of exceptio
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now