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.useGitMetadataActionThis 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 classGitRepositoryAction.ConverterImplDeprecated.static classGitRepositoryAction.ConverterV1Deprecated.
-
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 booleanequals(Object o)Deprecated.StringgetBranch()Deprecated.StringgetDefaultBranch()Deprecated.StringgetRepositoryURL()Deprecated.inthashCode()Deprecated.voidsetBranch(String branch)Deprecated.voidsetDefaultBranch(String defaultBranch)Deprecated.voidsetRepositoryURL(String repositoryURL)Deprecated.StringtoString()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.
-
-