de.otto.synapse.edison.journal.JournalHalRepresentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-edison Show documentation
Show all versions of synapse-edison Show documentation
A library used at otto.de to integrate synapse-core with edison-microservice.
The newest version!
package de.otto.synapse.edison.journal;
import de.otto.edison.hal.HalRepresentation;
import de.otto.edison.hal.Links;
import java.util.List;
public class JournalHalRepresentation extends HalRepresentation {
private final List messages;
public JournalHalRepresentation(final Links links,
final List entries) {
super(links);
this.messages = entries;
}
public List getMessages() {
return messages;
}
}