ClientConnection.java

14 lines | 295 B Blame History Raw Download
package org.keycloak.common;

/**
 * Information about the client connection
 *
 * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
 * @version $Revision: 1 $
 */
public interface ClientConnection {
    String getRemoteAddr();
    String getRemoteHost();
    int getReportPort();
}