1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.whitesource.teamcity.server;
17
18
19
20
21
22
23 public class ProxySettings {
24
25
26
27 private String host;
28
29 private int port;
30
31 private String username;
32
33 private String password;
34
35
36
37
38
39
40 public ProxySettings() {
41 port = -1;
42 }
43
44
45
46 public String getHost() {
47 return host;
48 }
49
50 public void setHost(String host) {
51 this.host = host;
52 }
53
54 public int getPort() {
55 return port;
56 }
57
58 public void setPort(int port) {
59 this.port = port;
60 }
61
62 public String getUsername() {
63 return username;
64 }
65
66 public void setUsername(String username) {
67 this.username = username;
68 }
69
70 public String getPassword() {
71 return password;
72 }
73
74 public void setPassword(String password) {
75 this.password = password;
76 }
77 }