Package io.quarkus.registry.config
Interface RegistryPlatformsConfig
-
- All Superinterfaces:
RegistryArtifactConfig
- All Known Subinterfaces:
RegistryPlatformsConfig.Mutable
- All Known Implementing Classes:
RegistryPlatformsConfigImpl,RegistryPlatformsConfigImpl.Builder
public interface RegistryPlatformsConfig extends RegistryArtifactConfig
Configuration related to the resolution of catalogs of available platforms.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRegistryPlatformsConfig.Mutable
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RegistryPlatformsConfig.Mutablebuilder()BooleangetExtensionCatalogsIncluded()Whether the client should send requests to resolve the platform extension catalogs (platform descriptors) to the registry or resolve them from Maven Central directly instead.default RegistryPlatformsConfig.Mutablemutable()-
Methods inherited from interface io.quarkus.registry.config.RegistryArtifactConfig
getArtifact, isDisabled
-
-
-
-
Method Detail
-
getExtensionCatalogsIncluded
Boolean getExtensionCatalogsIncluded()
Whether the client should send requests to resolve the platform extension catalogs (platform descriptors) to the registry or resolve them from Maven Central directly instead. Returningnullfrom this method will be equivalent to returningfalse, in which case the client will not send requests to resolve platform extension catalogs to the registry.- Returns:
- true if the registry will be able to handle platform descriptor requests, otherwise - false
-
mutable
default RegistryPlatformsConfig.Mutable mutable()
- Specified by:
mutablein interfaceRegistryArtifactConfig- Returns:
- a mutable copy of this config
-
builder
static RegistryPlatformsConfig.Mutable builder()
- Returns:
- a new mutable instance
-
-