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

org.jresearch.gavka.rest.data.TopicRestInfo Maven / Gradle / Ivy

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

import java.util.List;

import org.immutables.value.Value;

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

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

	String name();

	List partitionInfo();

	List groupInfo();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy