Changeset 2620
- Timestamp:
- 07/14/08 12:59:22 (3 months ago)
- Files:
-
- 1 modified
-
trunk/components/blitz/resources/omero/API.ice (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/blitz/resources/omero/API.ice
r2616 r2620 284 284 }; 285 285 286 dictionary<omero::model::Experimenter, string> ConnMap; 287 286 288 interface IShare extends ServiceInterface 287 289 { 288 290 void activate(long shareId); 289 omero::model::Session getShare(long sessionId); 290 SessionList getAllShares(bool active); 291 SessionList getOwnShares(bool active); 292 SessionList getMemberShares(bool active); 293 SessionList getSharesOwnedBy(omero::model::Experimenter user, bool active); 294 SessionList getMemberSharesFor(omero::model::Experimenter user, bool active); 295 IObjectList getContents(long shareId); 296 IObjectList getContentSubList(long shareId, int start, int finish); 297 int getContentSize(long shareId); 298 IdListMap getContentMap(long shareId); 291 omero::model::Session getShare(long sessionId) throws ServerError; 292 SessionList getAllShares(bool active) throws ServerError; 293 SessionList getOwnShares(bool active) throws ServerError; 294 SessionList getMemberShares(bool active) throws ServerError; 295 SessionList getSharesOwnedBy(omero::model::Experimenter user, bool active) throws ServerError; 296 SessionList getMemberSharesFor(omero::model::Experimenter user, bool active) throws ServerError; 297 298 IObjectList getContents(long shareId) throws ServerError; 299 IObjectList getContentSubList(long shareId, int start, int finish) throws ServerError; 300 int getContentSize(long shareId) throws ServerError; 301 IdListMap getContentMap(long shareId) throws ServerError; 299 302 300 303 long createShare(string description, … … 332 335 void removeUser(long shareId, omero::model::Experimenter exp); 333 336 void removeGuest(long shareId, string emailAddress); 334 337 338 ConnMap getActiveConnections(long shareId) throws ServerError; 339 ConnMap getPastConnections(long shareId) throws ServerError; 340 void invalidateConnection(long shareId, omero::model::Experimenter exp) throws ServerError; 341 omero::model::Event getEvents(long shareId, omero::model::Experimenter exp, omero::RTime from, omero::RTime to) throws ServerError; 342 335 343 }; 336 344
