Class JobBase
- java.lang.Object
-
- com.vectorcast.plugins.vectorcastexecution.JobBase
-
- All Implemented Interfaces:
ExtensionPoint,Action,Describable<JobBase>,ModelObject
- Direct Known Subclasses:
VectorCASTJobDiag,VectorCASTJobPipeline,VectorCASTJobSingle
public abstract class JobBase extends Object implements ExtensionPoint, Action, Describable<JobBase>
Base job.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description JobBase()Default Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExtensionList<JobBase>all()Returns all the registeredJobBases.JobBaseDescriptorgetDescriptor()Default descriptor.StringgetDisplayName()Default display name.StringgetIconFileName()Default icon name.SCMgetTheScm()Get the SCM.StringgetUrlName()Default URL name.voidsetTheScm(SCM inScm)Set the SCM object.
-
-
-
Method Detail
-
getTheScm
public SCM getTheScm()
Get the SCM.- Returns:
- the SCM
-
setTheScm
public void setTheScm(SCM inScm)
Set the SCM object.- Parameters:
inScm- new SCM
-
getIconFileName
public String getIconFileName()
Default icon name.- Specified by:
getIconFileNamein interfaceAction- Returns:
- icon name
-
getUrlName
public String getUrlName()
Default URL name.- Specified by:
getUrlNamein interfaceAction- Returns:
- url name
-
getDisplayName
public String getDisplayName()
Default display name.- Specified by:
getDisplayNamein interfaceAction- Specified by:
getDisplayNamein interfaceModelObject- Returns:
- name
-
getDescriptor
public JobBaseDescriptor getDescriptor()
Default descriptor.- Specified by:
getDescriptorin interfaceDescribable<JobBase>- Returns:
- descriptor
-
all
public static ExtensionList<JobBase> all()
Returns all the registeredJobBases.- Returns:
- all extensions based on JobBase
-
-