Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

ObjCtxMan.idl

Go to the documentation of this file.
00001 
00006 /* --------------------------------------------------------------
00007 Copyright (C) 2001 LifeLine Networks BV <soap2corba@lifeline.nl>
00008 
00009 This program is free software; you can redistribute it and/or
00010 modify it under the terms of the GNU General Public License
00011 as published by the Free Software Foundation; either
00012 version 2 of the License, or (at your option) any later
00013 version.
00014 
00015 This program is distributed in the hope that it will be useful,
00016 but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 GNU General Public License for more details.
00019 
00020 You should have received a copy of the GNU General Public License
00021 along with this program; if not, write to the Free Software
00022 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00023 -------------------------------------------------------------- */
00024 module SOAPBridge {
00025 
00032         interface ObjectContextManager : ContextManager {
00034                 exception ObjectReferenceNotFound {
00036                         string requestedStoredObjectReference;
00037                 };
00038 
00045                 string storeObjectReference (
00046                         in string contextKey,
00047                         in Object objectReference) 
00048                 raises (
00049                         ContextKeyNotFound );
00050 
00058                 Object resolveStoredObjectReference (
00059                         in string storedObjectReference) 
00060                 raises ( 
00061                         ContextKeyNotFound, 
00062                         ObjectReferenceNotFound );
00063 
00070                 void freeStoredObjectReference (
00071                         in string storedObjectReference) 
00072                 raises ( 
00073                         ContextKeyNotFound, 
00074                         ObjectReferenceNotFound );
00075 
00077                 typedef sequence <SOAPContext> SOAPContextSeq;
00078 
00085                 SOAPContextSeq listCurrentContexts (
00086                 );
00087 
00089                 struct StoredIOR {
00091                         string storedObjectReference;
00093                         string storedObject;
00094                 };
00095                 
00097                 typedef sequence <StoredIOR> StoredIORSeq;
00098 
00106                 StoredIORSeq listStoredIORs (
00107                         in string contextKey)
00108                 raises (
00109                         ContextKeyNotFound );
00110 
00111         };
00112         
00113 };
00114 

This documentation is part of the "SOAP to CORBA bridge" project
Copyright © 2000 by Lifeline Networks bv.
All rights are reserved.