Initial revision
[vamsas.git] / src / org / vamsas / client / object.java
1 /**
2  * org.vamsas.client.object
3  * 
4  */
5
6 package org.vamsas.client;
7
8 public abstract class object {
9
10     /**
11      * unique id for all vamsas objects
12      * allows unambiguous referencing
13      * to any object in the vamsas document
14      */
15
16     protected String __vorba_id;
17     /**
18      * Method to get fixed reference for
19      * the object in the vamsas document.
20      */
21     public string getVorbaId();
22     /**
23      * used by the Iclient implementation
24      * to generate unique Id based on
25      * client applications current namespace.
26      */
27     protected string setVorbaId();
28 }