/* * Created on 12-Sep-2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package org.vamsas.client; /** * The unique reference id for a Vamsas document Vobject, * used by applications to refer to the vamsas Vobject * within their own data space in the vamsas document. * TODO: decide if VorbaId should contain a reference * to either the IVorbaIdFactory that made it or the * IClient that defines the session (it might be * convenient). * @author jimp */ public class VorbaId { protected String id; protected VorbaId() { super(); } private VorbaId(String Id) { super(); id = Id; } /** * * @param vorbaObject the source of vorba Ids * @param vobject the Vobject to be registered with a new vorba id * @return */ protected static VorbaId newId(IVorbaIdFactory vorbaObject, Vobject vobject) { // Make unique id from appSpace info in vorbaObject synchronized (vorbaObject) { return vorbaObject.makeVorbaId(vobject); } } protected static VorbaId newId(String id) { return new VorbaId(id); } /** * @return Returns the id. */ public String getId() { return id; } }