Class GitRepositoryAction
- java.lang.Object
-
- hudson.model.InvisibleAction
-
- org.datadog.jenkins.plugins.datadog.model.DatadogPluginAction
-
- org.datadog.jenkins.plugins.datadog.model.GitRepositoryAction
-
- All Implemented Interfaces:
Action
,ModelObject
,Serializable
,org.jenkinsci.plugins.workflow.actions.PersistentAction
@Deprecated public class GitRepositoryAction extends DatadogPluginAction
Deprecated.useGitMetadataAction
This action cannot be deleted right away, as there might be jobs persisted to disk that have it. Removing it can cause deserialization errors which may corrupt the job data.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GitRepositoryAction.ConverterImpl
Deprecated.static class
GitRepositoryAction.ConverterV1
Deprecated.
-
Constructor Summary
Constructors Constructor Description GitRepositoryAction()
Deprecated.GitRepositoryAction(String repositoryURL, String defaultBranch, String branch)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
Deprecated.String
getBranch()
Deprecated.String
getDefaultBranch()
Deprecated.String
getRepositoryURL()
Deprecated.int
hashCode()
Deprecated.void
setBranch(String branch)
Deprecated.void
setDefaultBranch(String defaultBranch)
Deprecated.void
setRepositoryURL(String repositoryURL)
Deprecated.String
toString()
Deprecated.-
Methods inherited from class hudson.model.InvisibleAction
getDisplayName, getIconFileName, getUrlName
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface hudson.model.Action
getDisplayName, getIconFileName, getUrlName
-
-
-
-
Method Detail
-
getRepositoryURL
@Nullable public String getRepositoryURL()
Deprecated.
-
setRepositoryURL
public void setRepositoryURL(String repositoryURL)
Deprecated.
-
getDefaultBranch
@Nullable public String getDefaultBranch()
Deprecated.
-
setDefaultBranch
public void setDefaultBranch(String defaultBranch)
Deprecated.
-
getBranch
@Nullable public String getBranch()
Deprecated.
-
setBranch
public void setBranch(String branch)
Deprecated.
-
-