/* * 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; /** * @author jimp * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public interface VorbaIdFactory { /** * construct a new id appropriate for this * client in the vamsas session. * @return valid VorbaId for session, or null if VorbaIdFactory not configured correctly. */ public VorbaId makeVorbaId(); void setSession(SessionHandle sessionHandle); public SessionHandle getSession(); void setClient(ClientHandle appHandle); public ClientHandle getClient(); void setUser(UserHandle userHandle); public UserHandle getUser(); }