org.bdware.doip.audit.writer.EndpointContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
package org.bdware.doip.audit.writer;
import java.net.SocketAddress;
public abstract class EndpointContext {
public String extractIP(SocketAddress localAddress) {
return localAddress.toString();
}
public abstract String getClientIP();
public abstract String getClientDoId();
public abstract String getServerIP();
public abstract String getServerDoId();
}