summaryrefslogtreecommitdiff
path: root/src/corba/CosQueryCollection.idl
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2005-05-01 06:15:51 +0000
committerNeil Conway <neilc@samurai.com>2005-05-01 06:15:51 +0000
commit628c0893fdcdb63b7079af5358536486a7764ac2 (patch)
treeed57a475eaea50bf99c07c6c3844d5605e210efd /src/corba/CosQueryCollection.idl
parent7f8d2fe31c55a4d6f57077688faf4ca265083b93 (diff)
downloadpostgresql-628c0893fdcdb63b7079af5358536486a7764ac2.tar.gz
Remove the contents of the src/corba subdirectory: this has been dead code
for a long time.
Diffstat (limited to 'src/corba/CosQueryCollection.idl')
-rw-r--r--src/corba/CosQueryCollection.idl83
1 files changed, 0 insertions, 83 deletions
diff --git a/src/corba/CosQueryCollection.idl b/src/corba/CosQueryCollection.idl
deleted file mode 100644
index c68e7303df..0000000000
--- a/src/corba/CosQueryCollection.idl
+++ /dev/null
@@ -1,83 +0,0 @@
-/* RCS $PostgreSQL: pgsql/src/corba/CosQueryCollection.idl,v 1.3 2003/11/29 22:40:52 pgsql Exp $
- *
- * ----------------------------------------------------------------------------
- * This is unmarked software provided by the Object Management Group,Inc. (OMG)
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * CosQueryCollection is the Common Object Services Specification query
- * query colleciton module as it it appears in COSS1, v1.0.
- */
-
-
-#ifndef CosQueryCollection_idl
-#define CosQueryCollection_idl
-
-module CosQueryCollection {
-
- exception ElementInvalid {};
- exception IteratorInvalid {};
- exception PositionInvalid {};
-
- typedef string Istring;
- struct NVPair {
- Istring name;
- any value;
- };
-
- typedef sequence<NVPair> ParameterList;
-
- interface Collection;
- interface Iterator;
-
- interface CollectionFactory {
- Collection create (in ParameterList params);
- };
-
- interface Collection {
-
- readonly attribute long cardinality;
-
- void add_element (in any element)
- raises(ElementInvalid);
-
- void add_all_elements (in Collection elements)
- raises(ElementInvalid);
-
- void insert_element_at (in any element, in Iterator where)
- raises(IteratorInvalid,
- ElementInvalid);
-
- void replace_element_at (in any element, in Iterator where)
- raises(IteratorInvalid,
- PositionInvalid,
- ElementInvalid);
-
- void remove_element_at (in Iterator where)
- raises(IteratorInvalid,
- PositionInvalid);
-
- void remove_all_elements ();
-
- any retrieve_element_at (in Iterator where)
- raises(IteratorInvalid,
- PositionInvalid);
-
- Iterator create_iterator ();
-
- };
-
- interface Iterator {
- any next ()
- raises(IteratorInvalid,
- PositionInvalid);
- void reset ();
- boolean more ();
- };
-
-};
-
-#endif // CosQueryCollection_idl
-