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.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 classGitCommitAction.ConverterImplDeprecated.static classGitCommitAction.ConverterV1Deprecated.
-
Constructor Summary
Constructors Constructor Description GitCommitAction()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)Deprecated.StringgetAuthorDate()Deprecated.StringgetAuthorEmail()Deprecated.StringgetAuthorName()Deprecated.StringgetCommit()Deprecated.StringgetCommitterDate()Deprecated.StringgetCommitterEmail()Deprecated.StringgetCommitterName()Deprecated.StringgetMessage()Deprecated.StringgetTag()Deprecated.inthashCode()Deprecated.voidsetAuthorDate(String authorDate)Deprecated.voidsetAuthorEmail(String authorEmail)Deprecated.voidsetAuthorName(String authorName)Deprecated.voidsetCommit(String commit)Deprecated.voidsetCommitterDate(String committerDate)Deprecated.voidsetCommitterEmail(String committerEmail)Deprecated.voidsetCommitterName(String committerName)Deprecated.voidsetMessage(String message)Deprecated.voidsetTag(String tag)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
-
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.
-
-