com.evento.application.reference.AggregateStateEnvelope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evento-bundle Show documentation
Show all versions of evento-bundle Show documentation
Evento Framework - Bundle. The library to build a RECQ System based on Evento Server
The newest version!
package com.evento.application.reference;
import lombok.Getter;
import lombok.Setter;
import com.evento.common.modeling.state.AggregateState;
/**
* Class representing an envelope for an aggregate state.
*/
@Getter
@Setter
public class AggregateStateEnvelope {
private AggregateState aggregateState;
/**
* Construct an AggregateStateEnvelope with the given AggregateState.
*
* @param aggregateState the AggregateState to be encapsulated in the envelope
*/
public AggregateStateEnvelope(AggregateState aggregateState) {
this.aggregateState = aggregateState;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy