OmeroBlitz API
Home Previous Up Next Index

omero::grid::ImportLocation

Overview

class ImportLocation

Returned by {@code ManagedRepository.importFileset} with the information needed to proceed with an FS import. For the examples that follow, assume that the used files passed to importFileset were:

/Users/jack/Documents/Data/Experiment-1/1.dv
/Users/jack/Documents/Data/Experiment-1/1.dv.log
/Users/jack/Documents/Data/Experiment-2/2.dv
/Users/jack/Documents/Data/Experiment-2/2.dv.log

Used By

ImportRequest::location

Data Member Index

sharedPath
The shared base of all the paths passed to the server.
omittedLevels
Number of directories which have been omitted from the original paths passed to the server.
usedFiles
Parsed string names which should be used by the clients during upload.
directory
Represents the directory to which all files will be uploaded.

Data Members

string sharedPath;

The shared base of all the paths passed to the server.

int omittedLevels;

Number of directories which have been omitted from the original paths passed to the server.

api::StringSet usedFiles;

Parsed string names which should be used by the clients during upload. This array will be of the same length as the argument passed to {@code ManagedRepository.importFileset} but will have shortened paths.

Experiment/1.dv
Experiment/1.dv.log

model::OriginalFile directory;

Represents the directory to which all files will be uploaded.


Home Previous Up Next Index