OmeroBlitz API
Home Previous Up Next Index

omero::model::Details

Overview

[ "protected" ] class Details

Embedded component of every OMERO.blitz type. Since this is not an IObject subclass, no attempt is made to hide the state of this object, since it cannot be ""unloaded"".

Used By

api::Search::notAnnotatedBy
api::Search::notOwnedBy
api::Search::onlyAnnotatedBy
api::Search::onlyOwnedBy
IObject::details
IObject::getDetails

Operation Index

getOwner
setOwner
getGroup
setGroup
getCreationEvent
setCreationEvent
getUpdateEvent
setUpdateEvent
getPermissions
setPermissions
getExternalInfo
setExternalInfo

Data Member Index

owner
group
creationEvent
updateEvent
permissions
externalInfo
call
Context which was active during the call which returned this object.
event
Context which would have been returned by a simultaneous call to {@code omero.api.IAdmin.getEventContext} while this object was being loaded.

Operations

Experimenter getOwner()

void setOwner(Experimenter theOwner)

ExperimenterGroup getGroup()

void setGroup(ExperimenterGroup theGroup)

Event getCreationEvent()

void setCreationEvent(Event theCreationEvent)

Event getUpdateEvent()

void setUpdateEvent(Event theUpdateEvent)

Permissions getPermissions()

void setPermissions(Permissions thePermissions)

ExternalInfo getExternalInfo()

void setExternalInfo(ExternalInfo theExternalInfo)

Data Members

Experimenter owner;

ExperimenterGroup group;

Event creationEvent;

Event updateEvent;

Permissions permissions;

ExternalInfo externalInfo;

::Ice::Context call;

Context which was active during the call which returned this object. This context is set as the last (optional) argument of any remote Ice invocation. This is used to change the user, group, share, etc. of the current session.

sys::EventContext event;

Context which would have been returned by a simultaneous call to {@code omero.api.IAdmin.getEventContext} while this object was being loaded.


Home Previous Up Next Index