Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 894:c33a99fca826
remove _confidentialScheme
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 06 Oct 2016 23:40:29 -0600 |
parents | d1c302afeeb6 |
children | 49ff91097d6c |
comparison
equal
deleted
inserted
replaced
893:d1c302afeeb6 | 894:c33a99fca826 |
---|---|
60 private String _name; | 60 private String _name; |
61 | 61 |
62 public final Server server; | 62 public final Server server; |
63 private String _host; | 63 private String _host; |
64 public final int port; | 64 public final int port; |
65 private String _confidentialScheme = HttpSchemes.HTTPS; | |
66 private int _acceptors = 1; | 65 private int _acceptors = 1; |
67 private int _acceptorPriorityOffset = 0; | 66 private int _acceptorPriorityOffset = 0; |
68 private boolean _useDNS; | 67 private boolean _useDNS; |
69 private String _hostHeader; | 68 private String _hostHeader; |
70 | 69 |
340 public void persist(EndPoint endpoint) throws IOException | 339 public void persist(EndPoint endpoint) throws IOException |
341 { | 340 { |
342 } | 341 } |
343 | 342 |
344 /* ------------------------------------------------------------ */ | 343 /* ------------------------------------------------------------ */ |
345 /* ------------------------------------------------------------ */ | |
346 /* | |
347 * @see org.eclipse.jetty.server.Connector#getConfidentialScheme() | |
348 */ | |
349 public String getConfidentialScheme() | |
350 { | |
351 return _confidentialScheme; | |
352 } | |
353 | |
354 /* ------------------------------------------------------------ */ | |
355 /* | 344 /* |
356 * @see org.eclipse.jetty.server.Connector#isConfidential(org.eclipse.jetty.server.Request) | 345 * @see org.eclipse.jetty.server.Connector#isConfidential(org.eclipse.jetty.server.Request) |
357 */ | 346 */ |
358 public boolean isConfidential(Request request) | 347 public boolean isConfidential(Request request) |
359 { | 348 { |
360 return false; | 349 return false; |
361 } | |
362 | |
363 /* ------------------------------------------------------------ */ | |
364 /** | |
365 * @param confidentialScheme | |
366 * The confidentialScheme to set. | |
367 */ | |
368 public void setConfidentialScheme(String confidentialScheme) | |
369 { | |
370 _confidentialScheme = confidentialScheme; | |
371 } | 350 } |
372 | 351 |
373 /* ------------------------------------------------------------ */ | 352 /* ------------------------------------------------------------ */ |
374 protected abstract void accept(int acceptorID) throws IOException, InterruptedException; | 353 protected abstract void accept(int acceptorID) throws IOException, InterruptedException; |
375 | 354 |