Class ReleaseVariablesUpdatedEvent
- java.lang.Object
-
- com.xebialabs.xlrelease.domain.events.ReleaseVariablesUpdatedEvent
-
- All Implemented Interfaces:
ReleaseVariableEvent
,VariableEvent
,XLReleaseEvent
,java.io.Serializable
,scala.Equals
,scala.Product
public class ReleaseVariablesUpdatedEvent extends java.lang.Object implements ReleaseVariableEvent, scala.Product, java.io.Serializable
Event published when a bulk update to release variables has happened. Such an update happens usually after a script task execution in which thereleaseVariables
dictionary has changed. This update can lead to variables being created, updated and deleted. Note that when this event is published no specific single variable related events are published.param: originalVariables the list of release variables before the update. param: updatedVariables the list of release variables after the update.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReleaseVariablesUpdatedEvent(java.util.List<Variable> originalVariables, java.util.List<Variable> updatedVariables)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReleaseVariablesUpdatedEvent
apply(java.util.List<Variable> originalVariables, java.util.List<Variable> updatedVariables)
boolean
canEqual(java.lang.Object x$1)
ReleaseVariablesUpdatedEvent
copy(java.util.List<Variable> originalVariables, java.util.List<Variable> updatedVariables)
java.util.List<Variable>
copy$default$1()
java.util.List<Variable>
copy$default$2()
boolean
equals(java.lang.Object x$1)
int
hashCode()
java.util.List<Variable>
originalVariables()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
static scala.Option<scala.Tuple2<java.util.List<Variable>,java.util.List<Variable>>>
unapply(ReleaseVariablesUpdatedEvent x$0)
java.util.List<Variable>
updatedVariables()
java.lang.String
username()
void
username_$eq(java.lang.String x$1)
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.xebialabs.xlrelease.domain.events.XLReleaseEvent
timeMs, timestamp
-
-
-
-
Method Detail
-
apply
public static ReleaseVariablesUpdatedEvent apply(java.util.List<Variable> originalVariables, java.util.List<Variable> updatedVariables)
-
unapply
public static scala.Option<scala.Tuple2<java.util.List<Variable>,java.util.List<Variable>>> unapply(ReleaseVariablesUpdatedEvent x$0)
-
username
public java.lang.String username()
- Specified by:
username
in interfaceXLReleaseEvent
-
username_$eq
public void username_$eq(java.lang.String x$1)
- Specified by:
username_$eq
in interfaceXLReleaseEvent
-
originalVariables
public java.util.List<Variable> originalVariables()
-
updatedVariables
public java.util.List<Variable> updatedVariables()
-
copy
public ReleaseVariablesUpdatedEvent copy(java.util.List<Variable> originalVariables, java.util.List<Variable> updatedVariables)
-
copy$default$1
public java.util.List<Variable> copy$default$1()
-
copy$default$2
public java.util.List<Variable> copy$default$2()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-