Home | History | Annotate | Download | only in routing

Lines Matching defs:secure

71     /** Whether the route is (supposed to be) secure. */
72 private final boolean secure;
88 * @param secure <code>true</code> if the route is (to be) secure,
97 boolean secure,
117 this.secure = secure;
131 * @param secure <code>true</code> if the route is (to be) secure,
137 boolean secure, TunnelType tunnelled, LayerType layered) {
138 this(local, target, toChain(proxies), secure, tunnelled, layered);
150 * @param secure <code>true</code> if the route is (to be) secure,
160 boolean secure, TunnelType tunnelled, LayerType layered) {
161 this(local, target, toChain(proxy), secure, tunnelled, layered);
172 * @param secure <code>true</code> if the route is (to be) secure,
175 public HttpRoute(HttpHost target, InetAddress local, boolean secure) {
176 this(local, target, null, secure, TunnelType.PLAIN, LayerType.PLAIN);
193 * For convenience, it is assumed that a secure connection will be
200 * @param secure <code>true</code> if the route is (to be) secure,
204 boolean secure) {
205 this(local, target, toChain(proxy), secure,
206 secure ? TunnelType.TUNNELLED : TunnelType.PLAIN,
207 secure ? LayerType.LAYERED : LayerType.PLAIN);
328 return this.secure;
360 (this.secure == that.secure) &&
391 if (this.secure)
420 if (this.secure)