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

pl.allegro.tech.hermes.api.TopicConstraints Maven / Gradle / Ivy

There is a newer version: 2.6.22
Show newest version
package pl.allegro.tech.hermes.api;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.Valid;

public class TopicConstraints {

    private final TopicName topicName;
    @Valid
    private final Constraints constraints;

    @JsonCreator
    public TopicConstraints(@JsonProperty("topicName") String topicName,
                            @JsonProperty("constraints") Constraints constraints) {
        this.topicName = TopicName.fromQualifiedName(topicName);
        this.constraints = constraints;
    }

    public TopicName getTopicName() {
        return topicName;
    }

    public Constraints getConstraints() {
        return constraints;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy