public class RepositoryTriggerExecutionFailure
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
A trigger failed to run.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
failureMessage
Additional message information about the trigger that did not run.
|
private java.lang.String |
trigger
The name of the trigger that did not run.
|
Constructor and Description |
---|
RepositoryTriggerExecutionFailure() |
Modifier and Type | Method and Description |
---|---|
RepositoryTriggerExecutionFailure |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getFailureMessage()
Additional message information about the trigger that did not run.
|
java.lang.String |
getTrigger()
The name of the trigger that did not run.
|
int |
hashCode() |
void |
setFailureMessage(java.lang.String failureMessage)
Additional message information about the trigger that did not run.
|
void |
setTrigger(java.lang.String trigger)
The name of the trigger that did not run.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RepositoryTriggerExecutionFailure |
withFailureMessage(java.lang.String failureMessage)
Additional message information about the trigger that did not run.
|
RepositoryTriggerExecutionFailure |
withTrigger(java.lang.String trigger)
The name of the trigger that did not run.
|
private java.lang.String trigger
The name of the trigger that did not run.
private java.lang.String failureMessage
Additional message information about the trigger that did not run.
public void setTrigger(java.lang.String trigger)
The name of the trigger that did not run.
trigger
- The name of the trigger that did not run.public java.lang.String getTrigger()
The name of the trigger that did not run.
public RepositoryTriggerExecutionFailure withTrigger(java.lang.String trigger)
The name of the trigger that did not run.
trigger
- The name of the trigger that did not run.public void setFailureMessage(java.lang.String failureMessage)
Additional message information about the trigger that did not run.
failureMessage
- Additional message information about the trigger that did not run.public java.lang.String getFailureMessage()
Additional message information about the trigger that did not run.
public RepositoryTriggerExecutionFailure withFailureMessage(java.lang.String failureMessage)
Additional message information about the trigger that did not run.
failureMessage
- Additional message information about the trigger that did not run.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public RepositoryTriggerExecutionFailure clone()
clone
in class java.lang.Object