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

io.apicurio.registry.utils.impexp.v3.GroupRuleEntity Maven / Gradle / Ivy

package io.apicurio.registry.utils.impexp.v3;

import io.apicurio.registry.types.RuleType;
import io.apicurio.registry.utils.impexp.Entity;
import io.apicurio.registry.utils.impexp.EntityType;
import io.quarkus.runtime.annotations.RegisterForReflection;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.NoArgsConstructor;
import lombok.ToString;

import static lombok.AccessLevel.PRIVATE;

@Builder
@NoArgsConstructor
@AllArgsConstructor(access = PRIVATE)
@ToString
@RegisterForReflection
public class GroupRuleEntity extends Entity {

    public String groupId;
    public RuleType type;
    public String configuration;

    /**
     * @see Entity#getEntityType()
     */
    @Override
    public EntityType getEntityType() {
        return EntityType.GroupRule;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy