io.github.sgtsilvio.oci.registry.OciRegistryStorage.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-registry Show documentation
Show all versions of oci-registry Show documentation
OCI registry Java library that allows serving OCI artifacts to pull operations
package io.github.sgtsilvio.oci.registry
import java.nio.file.Path
/**
* @author Silvio Giebl
*/
sealed class OciRegistryStorage {
internal abstract fun getManifest(name: String, tag: String): Path?
internal abstract fun getManifest(name: String, digest: OciDigest): Path?
internal abstract fun getBlob(name: String, digest: OciDigest): Path?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy