* @param port The remote port
* @param handler CallbackHandler to prompt for authentication requirements.
* @return A domain client
*/
public static DomainClient create(final InetAddress address, int port, CallbackHandler handler) {
return new DomainClientImpl(address, port, handler);
}