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

io.apicurio.registry.events.dto.ArtifactRuleChange Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package io.apicurio.registry.events.dto;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ArtifactRuleChange extends ArtifactId {

    @JsonProperty("rule")
    private String rule;

    /**
     * @return the rule
     */
    @JsonProperty("rule")
    public String getRule() {
        return rule;
    }

    /**
     * @param rule the rule to set
     */
    @JsonProperty("rule")
    public void setRule(String rule) {
        this.rule = rule;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy