View Javadoc

1   package org.apache.mina.transport.socket;
2   
3   import java.net.InetSocketAddress;
4   
5   import org.apache.mina.common.IoSession;
6   
7   public interface SocketSession extends IoSession {
8       SocketSessionConfig getConfig();
9   
10      InetSocketAddress getRemoteAddress();
11  
12      InetSocketAddress getLocalAddress();
13  
14      InetSocketAddress getServiceAddress();
15  }