1 package org.enhydra.shark.api.internal.toolagent; 2 3 /** 4 * It holds information on locally unique ID for the session and 5 * vendor specific information. 6 */ 7 public interface SessionHandle { 8 /** 9 * Returns locally unique ID for the session. 10 * 11 * @return Locally unique ID for the session. 12 * 13 */ 14 long getHandle(); 15 16 /** 17 * Returns vendor specific information for the session. 18 * 19 * @return Vendor specific information for the session. 20 * 21 */ 22 String getInfo(); 23 } 24