All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.sgtsilvio.oci.registry.OciRegistryStorage.kt Maven / Gradle / Ivy

Go to download

OCI registry Java library that allows serving OCI artifacts to pull operations

There is a newer version: 0.4.1
Show newest version
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