All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evento.application.reference.AggregateStateEnvelope Maven / Gradle / Ivy

Go to download

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