1 25 26 27 package org.objectweb.jonathan.apis.protocols; 28 29 import org.objectweb.jonathan.apis.kernel.Context; 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 import org.objectweb.jonathan.apis.binding.BindException; 32 33 50 public interface SessionIdentifier { 51 52 57 Protocol getProtocol(); 58 59 64 void unexport(); 65 66 80 Session_High bind(Session_Low hls) 81 throws BindException, JonathanException; 82 83 84 92 SessionIdentifier[] next() throws JonathanException; 93 94 95 100 int getProtocolId(); 101 102 108 Context getInfo() throws JonathanException; 109 110 117 boolean isLocal(); 118 } 119 | Popular Tags |