Package io.quarkus.registry.config
Interface RegistryArtifactConfig
-
- All Known Subinterfaces:
RegistryArtifactConfig.Mutable,RegistryNonPlatformExtensionsConfig,RegistryNonPlatformExtensionsConfig.Mutable,RegistryPlatformsConfig,RegistryPlatformsConfig.Mutable
- All Known Implementing Classes:
RegistryArtifactConfigImpl,RegistryArtifactConfigImpl.Builder,RegistryNonPlatformExtensionsConfigImpl,RegistryNonPlatformExtensionsConfigImpl.Builder,RegistryPlatformsConfigImpl,RegistryPlatformsConfigImpl.Builder
public interface RegistryArtifactConfigBase registry catalog artifact configuration
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRegistryArtifactConfig.Mutable
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RegistryArtifactConfig.Mutablebuilder()io.quarkus.maven.dependency.ArtifactCoordsgetArtifact()Catalog artifact coordinates in the registry.booleanisDisabled()Whether this catalog artifact is not supported by the registry or should simply be disabled on the client side.default RegistryArtifactConfig.Mutablemutable()
-
-
-
Method Detail
-
isDisabled
boolean isDisabled()
Whether this catalog artifact is not supported by the registry or should simply be disabled on the client side.- Returns:
- true, if the catalog represented by this artifact should be excluded from processing
-
getArtifact
io.quarkus.maven.dependency.ArtifactCoords getArtifact()
Catalog artifact coordinates in the registry.- Returns:
- catalog artifact coordinates in the registry
-
mutable
default RegistryArtifactConfig.Mutable mutable()
- Returns:
- a mutable copy of this config
-
builder
static RegistryArtifactConfig.Mutable builder()
- Returns:
- a new mutable instance
-
-