OmeroBlitz API
Home Previous Up Next Index

omero::grid::ImportRequest

Overview

class ImportRequest extends cmd::Request

Command object which will be used to create the cmd::Handle instances passed back by the {@code ImportProcess}.

Data Member Index

clientUuid
Lookup value for the session that import is taking part in.
repoUuid
Repository which is responsible for this import.
process
Proxy of the process which this request will be running in.
activity
Activity that this will be filling out in the database.
settings
ImportSettings which are provided by the client on the call to {@code ManagedRepository.importFileset}.
location
ImportLocation which is calculated during the call to {@code ManagedRepository.importFileset}.
logFile
model::OriginalFile object representing the import log file.

Data Members

string clientUuid;

Lookup value for the session that import is taking part in.

string repoUuid;

Repository which is responsible for this import. All files which are uploaded will be available from it.

ImportProcess* process;

Proxy of the process which this request will be running in. This value will be filled in for possible later re-use, but is not read by the server.

model::FilesetJobLink activity;

Activity that this will be filling out in the database. This always points to a model::MetadataImportJob which is the first server-side phase after the model::UploadJob.

ImportSettings settings;

ImportSettings which are provided by the client on the call to {@code ManagedRepository.importFileset}.

ImportLocation location;

ImportLocation which is calculated during the call to {@code ManagedRepository.importFileset}.

model::OriginalFile logFile;

model::OriginalFile object representing the import log file.


Home Previous Up Next Index