io.bdeploy.bhive.objects.view.SkippedElementView 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.
The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy