Lines Matching refs:authType

107                                         HttpAuthType authType,
111 return create(protocol, authType, auth, schemeType, null);
115 HttpAuthType authType,
120 Objects.requireNonNull(authType);
122 switch(authType) {
124 case SERVER: return createServer(protocol, authType, auth,
130 case PROXY: return createProxy(protocol, authType, auth,
146 throw new InternalError("Unknown server type: " + authType);
237 HttpAuthType authType,
243 Objects.requireNonNull(authType);
248 final HttpHandler hh = server.createHandler(schemeType, auth, authType);
250 server.configureAuthentication(ctxt, schemeType, auth, authType);
256 HttpAuthType authType,
262 Objects.requireNonNull(authType);
269 final HttpHandler hh = server.createHandler(schemeType, auth, authType);
271 server.configureAuthentication(ctxt, schemeType, auth, authType);
334 HttpAuthType authType) {
335 return new HttpNoAuthHandler(authType);
341 HttpAuthType authType) {
345 ctxt.getFilters().add(new HttpDigestFilter(auth, authType));
349 ctxt.getFilters().add(new HttpBasicFilter(auth, authType));
352 switch(authType) {
357 ctxt.getFilters().add(new HttpBasicFilter(auth, authType));
364 ctxt.getFilters().add(new HttpNoAuthFilter(authType));
368 + schemeType + " authType=" + authType);
372 ctxt.getFilters().add(new HttpNoAuthFilter(authType));
387 final HttpAuthType authType;
389 public AbstractHttpFilter(HttpAuthType authType, String type) {
390 this.authType = authType;
398 return authType == HttpAuthType.PROXY
402 return authType == HttpAuthType.PROXY
406 return authType == HttpAuthType.PROXY
414 return authType == HttpAuthType.PROXY
602 public HttpNoAuthFilter(HttpAuthType authType) {
603 super(authType, authType == HttpAuthType.SERVER
628 public HttpBasicFilter(HttpTestAuthenticator auth, HttpAuthType authType) {
629 super(authType, authType == HttpAuthType.SERVER
699 public HttpDigestFilter(HttpTestAuthenticator auth, HttpAuthType authType) {
700 super(authType, authType == HttpAuthType.SERVER
797 final HttpAuthType authType;
799 public AbstractHttpHandler(HttpAuthType authType, String type) {
800 this.authType = authType;
828 public HttpNoAuthHandler(HttpAuthType authType) {
829 super(authType, authType == HttpAuthType.SERVER
846 public Http3xxHandler(URL proxyURL, HttpAuthType authType, int code300) {
847 super(authType, "Server" + code300);
862 + (authType == HttpAuthType.PROXY305