Class GitCommitAction
- java.lang.Object
-
- hudson.model.InvisibleAction
-
- org.datadog.jenkins.plugins.datadog.model.DatadogPluginAction
-
- org.datadog.jenkins.plugins.datadog.model.GitCommitAction
-
- All Implemented Interfaces:
Action
,ModelObject
,Serializable
,org.jenkinsci.plugins.workflow.actions.PersistentAction
@Deprecated public class GitCommitAction 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
GitCommitAction.ConverterImpl
Deprecated.static class
GitCommitAction.ConverterV1
Deprecated.
-
Constructor Summary
Constructors Constructor Description GitCommitAction()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
Deprecated.String
getAuthorDate()
Deprecated.String
getAuthorEmail()
Deprecated.String
getAuthorName()
Deprecated.String
getCommit()
Deprecated.String
getCommitterDate()
Deprecated.String
getCommitterEmail()
Deprecated.String
getCommitterName()
Deprecated.String
getMessage()
Deprecated.String
getTag()
Deprecated.int
hashCode()
Deprecated.void
setAuthorDate(String authorDate)
Deprecated.void
setAuthorEmail(String authorEmail)
Deprecated.void
setAuthorName(String authorName)
Deprecated.void
setCommit(String commit)
Deprecated.void
setCommitterDate(String committerDate)
Deprecated.void
setCommitterEmail(String committerEmail)
Deprecated.void
setCommitterName(String committerName)
Deprecated.void
setMessage(String message)
Deprecated.void
setTag(String tag)
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
-
getTag
public String getTag()
Deprecated.
-
setTag
public void setTag(String tag)
Deprecated.
-
getCommit
public String getCommit()
Deprecated.
-
setCommit
public void setCommit(String commit)
Deprecated.
-
getMessage
public String getMessage()
Deprecated.
-
setMessage
public void setMessage(String message)
Deprecated.
-
getAuthorName
public String getAuthorName()
Deprecated.
-
setAuthorName
public void setAuthorName(String authorName)
Deprecated.
-
getAuthorEmail
public String getAuthorEmail()
Deprecated.
-
setAuthorEmail
public void setAuthorEmail(String authorEmail)
Deprecated.
-
getAuthorDate
public String getAuthorDate()
Deprecated.
-
setAuthorDate
public void setAuthorDate(String authorDate)
Deprecated.
-
getCommitterName
public String getCommitterName()
Deprecated.
-
setCommitterName
public void setCommitterName(String committerName)
Deprecated.
-
getCommitterEmail
public String getCommitterEmail()
Deprecated.
-
setCommitterEmail
public void setCommitterEmail(String committerEmail)
Deprecated.
-
getCommitterDate
public String getCommitterDate()
Deprecated.
-
setCommitterDate
public void setCommitterDate(String committerDate)
Deprecated.
-
-