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

How to use
all
method
in
hudson.tasks.Builder

Best Java code snippets using hudson.tasks.Builder.all (Showing top 20 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: jenkinsci/jenkins

/**
 * Gets the builder descriptor by name. Primarily used for making them web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: jenkinsci/jenkins

public static List<Descriptor<Builder>> getBuilderDescriptors(AbstractProject<?,?> project) {
  return BuildStepDescriptor.filter(Builder.all(), project.getClass());
}
origin: jenkinsci/jenkins

@Override
protected void submit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  JSONObject json = req.getSubmittedForm();
  getBuildWrappersList().rebuild(req,json, BuildWrappers.getFor(this));
  getBuildersList().rebuildHetero(req,json, Builder.all(), "builder");
  getPublishersList().rebuildHetero(req, json, Publisher.all(), "publisher");
}
origin: org.jenkins-ci.main/jenkins-core

public static List<Descriptor<Builder>> getBuilderDescriptors(AbstractProject<?,?> project) {
  return BuildStepDescriptor.filter(Builder.all(), project.getClass());
}
origin: org.jenkins-ci.main/jenkins-core

/**
 * Gets the builder descriptor by name. Primarily used for making them web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: org.jvnet.hudson.main/hudson-core

/**
 * Gets the builder descriptor by name. Primarily used for making them web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: org.eclipse.hudson/hudson-core

/**
 * Gets the builder descriptor by name. Primarily used for making them
 * web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: org.eclipse.hudson.main/hudson-core

/**
 * Gets the builder descriptor by name. Primarily used for making them web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: hudson/hudson-2.x

/**
 * Gets the builder descriptor by name. Primarily used for making them web-visible.
 */
public Descriptor<Builder> getBuilder(String shortClassName) {
  return findDescriptor(shortClassName, Builder.all());
}
origin: org.eclipse.hudson/hudson-core

public static List<Descriptor<Builder>> getBuilderDescriptors(AbstractProject<?, ?> project) {
  return BuildStepDescriptor.filter(Builder.all(), project.getClass());
}
origin: org.eclipse.hudson.main/hudson-core

public static List<Descriptor<Builder>> getBuilderDescriptors(AbstractProject<?,?> project) {
  return BuildStepDescriptor.filter(Builder.all(), project.getClass());
}
origin: org.jvnet.hudson.main/hudson-core

public static List<Descriptor<Builder>> getBuilderDescriptors(AbstractProject<?,?> project) {
  return BuildStepDescriptor.filter(Builder.all(), project.getClass());
}
origin: org.jvnet.hudson.plugins/m2-extra-steps

@Override
public BuildWrapper newInstance(StaplerRequest req, JSONObject formData) throws FormException {
  M2ExtraStepsWrapper instance = req.bindJSON(M2ExtraStepsWrapper.class, formData);
  instance.preBuildSteps = Descriptor.newInstancesFromHeteroList(req, formData, "preBuildSteps", Builder.all());
  instance.postBuildSteps = Descriptor.newInstancesFromHeteroList(req, formData, "postBuildSteps", Builder.all());
  return instance;
}
 
origin: jenkinsci/promoted-builds-plugin

public static List<Descriptor<? extends BuildStep>> getAll() {
  List<Descriptor<? extends BuildStep>> list = new ArrayList<Descriptor<? extends BuildStep>>();
  addTo(Builder.all(), list);
  addTo(Publisher.all(), list);
  return list;
}
origin: jenkinsci/testlink-plugin

public static List<Descriptor<? extends BuildStep>> getBuildSteps() {
  List<Descriptor<? extends BuildStep>> list = new ArrayList<Descriptor<? extends BuildStep>>();
  addTo(Builder.all(), list);
  addTo(Publisher.all(), list);
  return list;
}
origin: org.eclipse.hudson.main/hudson-core

@Override
protected void submit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  JSONObject json = req.getSubmittedForm();
  buildBuildWrappers(req, json, BuildWrappers.getFor(this));
  setBuilders(DescribableListUtil.buildFromHetero(this, req, json, "builder", Builder.all()));
  buildPublishers(req, json, BuildStepDescriptor.filter(Publisher.all(), this.getClass()));
}
origin: org.eclipse.hudson/hudson-core

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req, rsp);
  JSONObject json = req.getSubmittedForm();
  buildBuildWrappers(req, json, BuildWrappers.getFor(this));
  setBuilders(DescribableListUtil.buildFromHetero(this, req, json, "builder", Builder.all()));
  buildPublishers(req, json, BuildStepDescriptor.filter(Publisher.all(), this.getClass()));
}
origin: org.jvnet.hudson.main/hudson-core

@Override
protected void submit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  JSONObject json = req.getSubmittedForm();
  buildBuildWrappers(req, json, BuildWrappers.getFor(this));
  setBuilders(DescribableListUtil.buildFromHetero(this, req, json, "builder", Builder.all()));
  buildPublishers(req, json, BuildStepDescriptor.filter(Publisher.all(), this.getClass()));
}
origin: hudson/hudson-2.x

@Override
protected void submit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  JSONObject json = req.getSubmittedForm();
  buildBuildWrappers(req, json, BuildWrappers.getFor(this));
  setBuilders(DescribableListUtil.buildFromHetero(this, req, json, "builder", Builder.all()));
  buildPublishers(req, json, BuildStepDescriptor.filter(Publisher.all(), this.getClass()));
}
origin: org.jenkins-ci.main/jenkins-core

@Override
protected void submit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  JSONObject json = req.getSubmittedForm();
  getBuildWrappersList().rebuild(req,json, BuildWrappers.getFor(this));
  getBuildersList().rebuildHetero(req,json, Builder.all(), "builder");
  getPublishersList().rebuildHetero(req, json, Publisher.all(), "publisher");
}
hudson.tasksBuilderall

Javadoc

Returns all the registered Builder descriptors.

Popular methods of Builder

  • getDescriptor
  • perform
  • getProjectActions
  • 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

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • putExtra (Intent)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • KeyStore (java.security)
    This class represents an in-memory collection of keys and certificates. It manages two types of entr
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • SortedSet (java.util)
    A Set that further provides a total ordering on its elements. The elements are ordered using their C
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
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