Uses of Class
io.apicurio.registry.storage.dto.RuleConfigurationDto
-
-
Uses of RuleConfigurationDto in io.apicurio.registry.ccompat.store
Methods in io.apicurio.registry.ccompat.store that return RuleConfigurationDto Modifier and Type Method Description RuleConfigurationDto
RegistryStorageFacade. getArtifactRule(String subject, RuleType ruleType)
RuleConfigurationDto
RegistryStorageFacadeImpl. getArtifactRule(String subject, RuleType ruleType)
RuleConfigurationDto
RegistryStorageFacade. getGlobalRule(RuleType ruleType)
RuleConfigurationDto
RegistryStorageFacadeImpl. getGlobalRule(RuleType ruleType)
Methods in io.apicurio.registry.ccompat.store with parameters of type RuleConfigurationDto Modifier and Type Method Description void
RegistryStorageFacade. createOrUpdateArtifactRule(String subject, RuleType type, RuleConfigurationDto dto)
void
RegistryStorageFacadeImpl. createOrUpdateArtifactRule(String subject, RuleType type, RuleConfigurationDto dto)
void
RegistryStorageFacade. createOrUpdateGlobalRule(RuleType type, RuleConfigurationDto dto)
void
RegistryStorageFacadeImpl. createOrUpdateGlobalRule(RuleType type, RuleConfigurationDto dto)
-
Uses of RuleConfigurationDto in io.apicurio.registry.events
Methods in io.apicurio.registry.events that return RuleConfigurationDto Modifier and Type Method Description RuleConfigurationDto
EventSourcedRegistryStorage. getArtifactRule(String groupId, String artifactId, RuleType rule)
RuleConfigurationDto
EventSourcedRegistryStorage. getGlobalRule(RuleType rule)
Methods in io.apicurio.registry.events with parameters of type RuleConfigurationDto Modifier and Type Method Description CompletionStage<Void>
EventSourcedRegistryStorage. createArtifactRuleAsync(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
void
EventSourcedRegistryStorage. createGlobalRule(RuleType rule, RuleConfigurationDto config)
void
EventSourcedRegistryStorage. updateArtifactRule(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
void
EventSourcedRegistryStorage. updateGlobalRule(RuleType rule, RuleConfigurationDto config)
-
Uses of RuleConfigurationDto in io.apicurio.registry.rules
Methods in io.apicurio.registry.rules that return RuleConfigurationDto Modifier and Type Method Description RuleConfigurationDto
RulesProperties. getDefaultGlobalRuleConfiguration(RuleType ruleType)
Get the default global RuleConfigurationDto for the supplied RuleType.RuleConfigurationDto
RulesPropertiesImpl. getDefaultGlobalRuleConfiguration(RuleType ruleType)
-
Uses of RuleConfigurationDto in io.apicurio.registry.storage
Methods in io.apicurio.registry.storage that return RuleConfigurationDto Modifier and Type Method Description RuleConfigurationDto
RegistryStorage. getArtifactRule(String groupId, String artifactId, RuleType rule)
Gets all of the information for a single rule configured on a given artifact.RuleConfigurationDto
RegistryStorage. getGlobalRule(RuleType rule)
Gets all information about a single global rule.Methods in io.apicurio.registry.storage with parameters of type RuleConfigurationDto Modifier and Type Method Description default void
RegistryStorage. createArtifactRule(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
Creates an artifact rule for a specific Artifact.CompletionStage<Void>
RegistryStorage. createArtifactRuleAsync(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
void
RegistryStorage. createGlobalRule(RuleType rule, RuleConfigurationDto config)
Creates a single global rule.void
RegistryStorage. updateArtifactRule(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
Updates the configuration information for a single rule on a given artifact.void
RegistryStorage. updateGlobalRule(RuleType rule, RuleConfigurationDto config)
Updates the configuration settings for a single global rule. -
Uses of RuleConfigurationDto in io.apicurio.registry.storage.impl
Methods in io.apicurio.registry.storage.impl with parameters of type RuleConfigurationDto Modifier and Type Method Description void
AbstractRegistryStorage. createArtifactRule(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
-
Uses of RuleConfigurationDto in io.apicurio.registry.storage.impl.sql
Methods in io.apicurio.registry.storage.impl.sql that return RuleConfigurationDto Modifier and Type Method Description RuleConfigurationDto
AbstractSqlRegistryStorage. getArtifactRule(String groupId, String artifactId, RuleType rule)
RuleConfigurationDto
AbstractSqlRegistryStorage. getGlobalRule(RuleType rule)
Methods in io.apicurio.registry.storage.impl.sql with parameters of type RuleConfigurationDto Modifier and Type Method Description CompletionStage<Void>
AbstractSqlRegistryStorage. createArtifactRuleAsync(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
void
AbstractSqlRegistryStorage. createGlobalRule(RuleType rule, RuleConfigurationDto config)
void
AbstractSqlRegistryStorage. updateArtifactRule(String groupId, String artifactId, RuleType rule, RuleConfigurationDto config)
void
AbstractSqlRegistryStorage. updateGlobalRule(RuleType rule, RuleConfigurationDto config)
-