| 20 | import java.net.InetSocketAddress; |
| 21 | |
| 22 | public interface Endpoint { |
| 23 | |
| 24 | InputStream getInputStream() throws Exception; |
| 25 | |
| 26 | OutputStream getOutputStream() throws Exception; |
| 27 | |
| 28 | InetSocketAddress getAddress(); |
| 29 | |
| 30 | int getLocalPort(); |
| 31 | |
| 32 | String getName(); |
| 33 | } |
no outgoing calls
no test coverage detected