Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f0f0889c85ca5634776e24e12c6ec417daf48fb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2015 Red Hat.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - Initial Contribution
 *******************************************************************************/

package org.eclipse.linuxtools.internal.docker.core;

/**
 * TCP Connection settings
 */
public class TCPConnectionSettings extends BaseConnectionSettings {

	/**
	 * the host to connect to (a URI representation, including 'tcp' scheme and
	 * port number).
	 */
	private final String host;

	/** flag to indicate if TLS is used. */
	private final boolean tlsVerify;

	/**
	 * absolute path to folder containing the certificates (ca.pem, key.pem and
	 * cert.pem).
	 */
	private final String pathToCertificates;

	/**
	 * Constructor
	 * 
	 * @param host
	 *            host to connect to
	 * @param tlsVerify
	 *            flag to indicate if TLS is used
	 * @param pathToCertificates
	 *            absolute path to folder containing the certificates
	 */
	public TCPConnectionSettings(final String host, final boolean tlsVerify,
			final String pathToCertificates) {
		super();
		this.host = host;
		this.tlsVerify = tlsVerify;
		this.pathToCertificates = pathToCertificates;
	}

	@Override
	public BindingType getType() {
		return BindingType.TCP_CONNECTION;
	}

	/**
	 * @return the host
	 */
	public String getHost() {
		return host;
	}

	/**
	 * @return the tlsVerify
	 */
	public boolean isTlsVerify() {
		return tlsVerify;
	}

	/**
	 * @return the pathToCertificates
	 */
	public String getPathToCertificates() {
		return pathToCertificates;
	}

}

Back to the top