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

io.bdeploy.bhive.objects.view.SkippedElementView Maven / Gradle / Ivy

Go to download

Public API including dependencies, ready to be used for integrations and plugins.

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