Version: 5.4.10-ice35-b105

OmeroBlitz API
Home Previous Up Next Index

omero::cmd::SkipHead

Overview

class SkipHead extends GraphModify2

Perform a request skipping the top-most model objects in the graph. This permits operating upon the (possibly indirect) children of given objects. The arguments of this SkipHead request override those of the given request only until the targeted children are reached, except that if this SkipHead request's dryRun is set to true then the dryRun override persists throughout the operation. The response from SkipHead is as from the given request.

Data Member Index

startFrom
Classes of model objects from which to actually start the operation.
request
The operation to perform on the targeted model objects.

Data Members

api::StringSet startFrom;

Classes of model objects from which to actually start the operation. These are children, directly or indirectly, of the target objects. These children become the true target objects of the underlying request.

GraphModify2 request;

The operation to perform on the targeted model objects. The given request's targetObjects property is ignored: it is the SkipHead request that specifies the parent objects. Only specific request types are supported (those implementing WrappableRequest).


Home Previous Up Next Index