/* * Created on 14-Sep-2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package org.vamsas.client; /** * @author jimp * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public interface IVorbaIdFactory { /** * construct a new id appropriate for this client in the vamsas session. * @param vobject TODO * * @return valid VorbaId for session, or null if VorbaIdFactory not configured * correctly. */ public abstract VorbaId makeVorbaId(Vobject vobject); public abstract SessionHandle getSessionHandle(); public abstract ClientHandle getClientHandle(); public abstract UserHandle getUserHandle(); }