org.openfact.common.ClientConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfact-common Show documentation
Show all versions of openfact-common Show documentation
Common library and dependencies shared with server and all adapters
The newest version!
package org.openfact.common;
/**
* Information about the client connection
*/
public interface ClientConnection {
String getRemoteAddr();
String getRemoteHost();
int getRemotePort();
String getLocalAddr();
int getLocalPort();
}