/* */ package org.vamsas.client; /** * Uniquely describes a vamsas client application. * @author jimp */ public class ClientHandle { /** * @param clientName * @param version */ public ClientHandle(String clientName, String version) { super(); this.clientName = clientName; this.version = version; } /** * (non-unique) human readable vamsas client name */ String clientName; /** * the unambiguous client identifier * This may be rewritten by the Vorba object if * other clients with the same name, version * and user are involved in a session. * */ String clientUrn; /** * version modifier to tag application space */ String version; /** * @return Returns the clientUrn. */ public String getClientUrn() { return clientUrn; } /** * May become protected - should only be set by a Vorba object. * @param clientUrn * The clientUrn to set. */ public void setClientUrn(String clientUrn) { this.clientUrn = clientUrn; } /** * @return Returns the version. */ public String getVersion() { return version; } /** * @param version * The version to set. */ public void setVersion(String version) { this.version = version; } /** * @return Returns the clientName. */ public String getClientName() { return clientName; } /** * @param clientName * The clientName to set. */ public void setClientName(String clientName) { this.clientName = clientName; } }