2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 package org.opendaylight.netconf.ssh;
11 import io.netty.channel.local.LocalAddress;
12 import java.net.InetSocketAddress;
13 import org.apache.sshd.common.KeyPairProvider;
14 import org.opendaylight.netconf.auth.AuthProvider;
16 public final class SshProxyServerConfigurationBuilder {
17 private InetSocketAddress bindingAddress;
18 private LocalAddress localAddress;
19 private AuthProvider authenticator;
20 private KeyPairProvider keyPairProvider;
21 private int idleTimeout;
23 public SshProxyServerConfigurationBuilder setBindingAddress(final InetSocketAddress bindingAddress) {
24 this.bindingAddress = bindingAddress;
28 public SshProxyServerConfigurationBuilder setLocalAddress(final LocalAddress localAddress) {
29 this.localAddress = localAddress;
33 public SshProxyServerConfigurationBuilder setAuthenticator(final AuthProvider authenticator) {
34 this.authenticator = authenticator;
38 public SshProxyServerConfigurationBuilder setKeyPairProvider(final KeyPairProvider keyPairProvider) {
39 this.keyPairProvider = keyPairProvider;
43 public SshProxyServerConfigurationBuilder setIdleTimeout(final int idleTimeout) {
44 this.idleTimeout = idleTimeout;
48 public SshProxyServerConfiguration createSshProxyServerConfiguration() {
49 return new SshProxyServerConfiguration(bindingAddress, localAddress, authenticator,
50 keyPairProvider, idleTimeout);
53 public static SshProxyServerConfigurationBuilder create() {
54 return new SshProxyServerConfigurationBuilder();