io.bdeploy.bhive.objects.ReferenceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Public API including dependencies, ready to be used for integrations and plugins.
package io.bdeploy.bhive.objects;
import java.nio.file.Path;
import io.bdeploy.bhive.model.Manifest;
import io.bdeploy.bhive.model.Tree;
import io.bdeploy.bhive.model.Tree.Key;
/**
* A handler which acts upon {@link Manifest} references in a {@link Tree}.
*/
public interface ReferenceHandler {
/**
* @param location the location where the reference is located (the references parent directory).
* @param key the {@link Key} referencing the manifest.
* @param referenced the referenced manifest
*/
public void onReference(Path location, Tree.Key key, Manifest referenced);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy