/** * org.vamsas.client.object * */ package org.vamsas.client; public abstract class object { /** * unique id for all vamsas objects * allows unambiguous referencing * to any object in the vamsas document */ protected String __vorba_id; /** * Method to get fixed reference for * the object in the vamsas document. */ public string getVorbaId(); /** * used by the Iclient implementation * to generate unique Id based on * client applications current namespace. */ protected string setVorbaId(); }