Uses of Class
io.apicurio.registry.types.RuleType
-
Packages that use RuleType Package Description io.apicurio.registry.rest.v1 io.apicurio.registry.rest.v1.beans io.apicurio.registry.rest.v2 io.apicurio.registry.rest.v2.beans io.apicurio.registry.types -
-
Uses of RuleType in io.apicurio.registry.rest.v1
Methods in io.apicurio.registry.rest.v1 that return types with arguments of type RuleType Modifier and Type Method Description List<RuleType>
ArtifactsResource. listArtifactRules(String artifactId)
Returns a list of all rules configured for the artifact.List<RuleType>
RulesResource. listGlobalRules()
Gets a list of all the currently configured global rules (if any).Methods in io.apicurio.registry.rest.v1 with parameters of type RuleType Modifier and Type Method Description void
ArtifactsResource. deleteArtifactRule(String artifactId, RuleType rule)
Deletes a rule from the artifact.void
RulesResource. deleteGlobalRule(RuleType rule)
Deletes a single global rule.Rule
ArtifactsResource. getArtifactRuleConfig(RuleType rule, String artifactId)
Returns information about a single rule configured for an artifact.Rule
RulesResource. getGlobalRuleConfig(RuleType rule)
Returns information about the named globally configured rule.Rule
ArtifactsResource. updateArtifactRuleConfig(String artifactId, RuleType rule, Rule data)
Updates the configuration of a single rule for the artifact.Rule
RulesResource. updateGlobalRuleConfig(RuleType rule, Rule data)
Updates the configuration for a globally configured rule. -
Uses of RuleType in io.apicurio.registry.rest.v1.beans
Methods in io.apicurio.registry.rest.v1.beans that return RuleType Modifier and Type Method Description RuleType
Rule. getType()
Methods in io.apicurio.registry.rest.v1.beans with parameters of type RuleType Modifier and Type Method Description void
Rule. setType(RuleType type)
-
Uses of RuleType in io.apicurio.registry.rest.v2
Methods in io.apicurio.registry.rest.v2 that return types with arguments of type RuleType Modifier and Type Method Description List<RuleType>
GroupsResource. listArtifactRules(String groupId, String artifactId)
Returns a list of all rules configured for the artifact.List<RuleType>
AdminResource. listGlobalRules()
Gets a list of all the currently configured global rules (if any).Methods in io.apicurio.registry.rest.v2 with parameters of type RuleType Modifier and Type Method Description void
GroupsResource. deleteArtifactRule(String groupId, String artifactId, RuleType rule)
Deletes a rule from the artifact.void
AdminResource. deleteGlobalRule(RuleType rule)
Deletes a single global rule.Rule
GroupsResource. getArtifactRuleConfig(String groupId, String artifactId, RuleType rule)
Returns information about a single rule configured for an artifact.Rule
AdminResource. getGlobalRuleConfig(RuleType rule)
Returns information about the named globally configured rule.Rule
GroupsResource. updateArtifactRuleConfig(String groupId, String artifactId, RuleType rule, Rule data)
Updates the configuration of a single rule for the artifact.Rule
AdminResource. updateGlobalRuleConfig(RuleType rule, Rule data)
Updates the configuration for a globally configured rule. -
Uses of RuleType in io.apicurio.registry.rest.v2.beans
Methods in io.apicurio.registry.rest.v2.beans that return RuleType Modifier and Type Method Description RuleType
Rule. getType()
Methods in io.apicurio.registry.rest.v2.beans with parameters of type RuleType Modifier and Type Method Description void
Rule. setType(RuleType type)
-
Uses of RuleType in io.apicurio.registry.types
Methods in io.apicurio.registry.types that return RuleType Modifier and Type Method Description static RuleType
RuleType. fromValue(String value)
static RuleType
RuleType. valueOf(String name)
Returns the enum constant of this type with the specified name.static RuleType[]
RuleType. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-