77/**
88 * Gather various additional settings of {@link GoodData}. Can be passed to the {@link GoodData} constructor to tune up
99 * it's behaviour.
10- * <p/ >
10+ * <p>
1111 * Settings are applied only once at the beginning. Changing this bean after it's passed to {@link GoodData} has
1212 * no effect.
1313 */
@@ -22,7 +22,7 @@ public class GoodDataSettings {
2222 /**
2323 * Set maximum number of connections used. This applies same for connections per host as for total connections.
2424 * (As we assume GoodData connects to single host).
25- * <p/ >
25+ * <p>
2626 * The default value is 20.
2727 *
2828 * @param maxConnections maximum number of connections used.
@@ -43,9 +43,9 @@ public int getMaxConnections() {
4343
4444 /**
4545 * Set timeout milliseconds until connection established.
46- * <p/ >
46+ * <p>
4747 * The default value is 10 seconds (10000 ms).
48- * <p/ >
48+ * <p>
4949 * Set to 0 for infinite.
5050 *
5151 * @param connectionTimeout connection timeout milliseconds
@@ -57,9 +57,9 @@ public void setConnectionTimeout(int connectionTimeout) {
5757
5858 /**
5959 * Set timeout seconds until connection established.
60- * <p/ >
60+ * <p>
6161 * The default value is 10 seconds.
62- * <p/ >
62+ * <p>
6363 * Set to 0 for infinite.
6464 *
6565 * @param connectionTimeout connection timeout seconds
@@ -79,9 +79,9 @@ public int getConnectionTimeout() {
7979
8080 /**
8181 * Set timeout in milliseconds used when requesting a connection from the connection manager.
82- * <p/ >
82+ * <p>
8383 * The default value is 10 seconds (10000 ms).
84- * <p/ >
84+ * <p>
8585 * Set to 0 for infinite.
8686 *
8787 * @param connectionRequestTimeout connection request timeout milliseconds
@@ -93,11 +93,11 @@ public void setConnectionRequestTimeout(final int connectionRequestTimeout) {
9393
9494 /**
9595 * Set timeout in seconds used when requesting a connection from the connection manager.
96- * <p/ >
96+ * <p>
9797 * The default value is 10 seconds.
98- * <p/ >
98+ * <p>
9999 * Set to 0 for infinite.
100- * <p/ >
100+ * <p>
101101 *
102102 * @param connectionRequestTimeout connection request timeout seconds
103103 */
@@ -116,9 +116,9 @@ public int getConnectionRequestTimeout() {
116116
117117 /**
118118 * Set socket timeout (maximum period inactivity between two consecutive data packets) milliseconds.
119- * <p/ >
119+ * <p>
120120 * The default value is 60 seconds (60000 ms).
121- * <p/ >
121+ * <p>
122122 * Set to 0 for infinite.
123123 *
124124 * @param socketTimeout socket timeout milliseconds
@@ -130,9 +130,9 @@ public void setSocketTimeout(int socketTimeout) {
130130
131131 /**
132132 * Set socket timeout (maximum period inactivity between two consecutive data packets) seconds.
133- * <p/ >
133+ * <p>
134134 * The default value is 60 seconds.
135- * <p/ >
135+ * <p>
136136 * Set to 0 for infinite.
137137 *
138138 * @param socketTimeout socket timeout seconds
0 commit comments