Home | History | Annotate | Download | only in routing

Lines Matching defs:secure

76     /** Whether the route is (supposed to be) secure. */
77 private final boolean secure;
93 * @param secure <code>true</code> if the route is (to be) secure,
102 boolean secure,
122 this.secure = secure;
136 * @param secure <code>true</code> if the route is (to be) secure,
142 boolean secure, TunnelType tunnelled, LayerType layered) {
143 this(local, target, toChain(proxies), secure, tunnelled, layered);
155 * @param secure <code>true</code> if the route is (to be) secure,
165 boolean secure, TunnelType tunnelled, LayerType layered) {
166 this(local, target, toChain(proxy), secure, tunnelled, layered);
177 * @param secure <code>true</code> if the route is (to be) secure,
180 public HttpRoute(HttpHost target, InetAddress local, boolean secure) {
181 this(local, target, null, secure, TunnelType.PLAIN, LayerType.PLAIN);
198 * For convenience, it is assumed that a secure connection will be
205 * @param secure <code>true</code> if the route is (to be) secure,
209 boolean secure) {
210 this(local, target, toChain(proxy), secure,
211 secure ? TunnelType.TUNNELLED : TunnelType.PLAIN,
212 secure ? LayerType.LAYERED : LayerType.PLAIN);
333 return this.secure;
365 (this.secure == that.secure) &&
396 if (this.secure)
425 if (this.secure)