Package hudson.tasks
Class BuildWrappers
- java.lang.Object
-
- hudson.tasks.BuildWrappers
-
public class BuildWrappers extends Object
List of all installedBuildWrapper
.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description static List<Descriptor<BuildWrapper>>
WRAPPERS
Deprecated.as of 1.281.
-
Constructor Summary
Constructors Constructor Description BuildWrappers()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<Descriptor<BuildWrapper>>
getFor(AbstractProject<?,?> project)
List up allBuildWrapperDescriptor
s that are applicable for the given project.
-
-
-
Field Detail
-
WRAPPERS
@Deprecated public static final List<Descriptor<BuildWrapper>> WRAPPERS
Deprecated.as of 1.281. UseExtension
for registration, and useBuildWrapper.all()
for listing them.
-
-
Method Detail
-
getFor
public static List<Descriptor<BuildWrapper>> getFor(AbstractProject<?,?> project)
List up allBuildWrapperDescriptor
s that are applicable for the given project.- Returns:
- The signature doesn't use
BuildWrapperDescriptor
to maintain compatibility withBuildWrapper
implementations before 1.150.
-
-