
io.bdeploy.bhive.objects.view.SkippedElementView Maven / Gradle / Ivy
package io.bdeploy.bhive.objects.view;
import java.util.Collection;
import io.bdeploy.bhive.model.ObjectId;
import io.bdeploy.bhive.model.Tree;
import io.bdeploy.bhive.op.ScanOperation;
/**
* Holds information about an object which was skipped during a {@link Tree} scan.
*
* This usually happens when limiting the maximum scan depth. Omitted objects are (non-recursive) represented by
* {@link SkippedElementView}s.
*
* @see ScanOperation
*/
public class SkippedElementView extends ElementView {
public SkippedElementView(ObjectId id, Collection path) {
super(id, path);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy