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 registeredJobBase
s.JobBaseDescriptor
getDescriptor()
Default descriptor.String
getDisplayName()
Default display name.String
getIconFileName()
Default icon name.SCM
getTheScm()
Get the SCM.String
getUrlName()
Default URL name.void
setTheScm(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:
getIconFileName
in interfaceAction
- Returns:
- icon name
-
getUrlName
public String getUrlName()
Default URL name.- Specified by:
getUrlName
in interfaceAction
- Returns:
- url name
-
getDisplayName
public String getDisplayName()
Default display name.- Specified by:
getDisplayName
in interfaceAction
- Specified by:
getDisplayName
in interfaceModelObject
- Returns:
- name
-
getDescriptor
public JobBaseDescriptor getDescriptor()
Default descriptor.- Specified by:
getDescriptor
in interfaceDescribable<JobBase>
- Returns:
- descriptor
-
all
public static ExtensionList<JobBase> all()
Returns all the registeredJobBase
s.- Returns:
- all extensions based on JobBase
-
-