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

org.jresearch.gavka.rest.api.MessageParameters Maven / Gradle / Ivy

There is a newer version: 1.0.65
Show newest version
package org.jresearch.gavka.rest.api;

import java.util.Optional;

import org.immutables.value.Value;
import org.jresearch.commons.gwt.shared.model.time.GwtLocalDateTimeModel;
import org.jresearch.gavka.domain.KeyFormat;
import org.jresearch.gavka.domain.MessageFormat;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

@Value.Immutable
@Value.Style(builder = "new") // builder has to have constructor
@JsonDeserialize(builder = ImmutableMessageParameters.Builder.class)
public interface MessageParameters {

	String connection();

	String topic();

	String key();

	String valuePattern();

	Optional from();

	KeyFormat keyFormat();

	MessageFormat messageFormat();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy