Class BitbucketSCMStep
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<org.jenkinsci.plugins.workflow.steps.Step>
-
- org.jenkinsci.plugins.workflow.steps.Step
-
- org.jenkinsci.plugins.workflow.steps.scm.SCMStep
-
- com.atlassian.bitbucket.jenkins.internal.scm.BitbucketSCMStep
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<org.jenkinsci.plugins.workflow.steps.Step>
public class BitbucketSCMStep extends org.jenkinsci.plugins.workflow.steps.scm.SCMStep
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BitbucketSCMStep.DescriptorImpl
-
Nested classes/interfaces inherited from class org.jenkinsci.plugins.workflow.steps.scm.SCMStep
org.jenkinsci.plugins.workflow.steps.scm.SCMStep.SCMStepDescriptor, org.jenkinsci.plugins.workflow.steps.scm.SCMStep.StepExecutionImpl
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description BitbucketSCMStep(String projectName, String repositoryName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SCM
createSCM()
List<hudson.plugins.git.BranchSpec>
getBranches()
String
getCredentialsId()
String
getId()
String
getMirrorName()
String
getProjectName()
String
getRepositoryName()
String
getServerId()
String
getServerName()
String
getSshCredentialsId()
void
setBranches(List<hudson.plugins.git.BranchSpec> branches)
void
setCredentialsId(String credentialsId)
void
setId(String id)
void
setMirrorName(String mirrorName)
void
setServerId(String serverId)
void
setServerName(String serverName)
void
setSshCredentialsId(String sshCredentialsId)
-
-
-
Method Detail
-
setBranches
@DataBoundSetter public void setBranches(List<hudson.plugins.git.BranchSpec> branches)
-
setCredentialsId
@DataBoundSetter public void setCredentialsId(@Nullable String credentialsId)
-
setId
@DataBoundSetter public void setId(String id)
-
setMirrorName
@DataBoundSetter public void setMirrorName(@Nullable String mirrorName)
-
setServerId
@DataBoundSetter public void setServerId(String serverId)
-
setServerName
@DataBoundSetter public void setServerName(String serverName)
-
setSshCredentialsId
@DataBoundSetter public void setSshCredentialsId(@Nullable String sshCredentialsId)
-
getBranches
public List<hudson.plugins.git.BranchSpec> getBranches()
-
getCredentialsId
@Nullable public String getCredentialsId()
-
getSshCredentialsId
@Nullable public String getSshCredentialsId()
-
getId
public String getId()
-
getMirrorName
@Nullable public String getMirrorName()
-
getProjectName
public String getProjectName()
-
getRepositoryName
public String getRepositoryName()
-
getServerId
public String getServerId()
-
getServerName
@Nullable public String getServerName()
-
createSCM
protected SCM createSCM()
- Specified by:
createSCM
in classorg.jenkinsci.plugins.workflow.steps.scm.SCMStep
-
-