Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 890:5dc615c34848
remove _integralPort
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 06 Oct 2016 23:29:22 -0600 |
| parents | 5731a7707466 |
| children | b48361bd68e3 |
comparison
equal
deleted
inserted
replaced
| 889:5731a7707466 | 890:5dc615c34848 |
|---|---|
| 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 _integralScheme = HttpSchemes.HTTPS; | 65 private String _integralScheme = HttpSchemes.HTTPS; |
| 66 private int _integralPort = 0; | |
| 67 private String _confidentialScheme = HttpSchemes.HTTPS; | 66 private String _confidentialScheme = HttpSchemes.HTTPS; |
| 68 private int _confidentialPort = 0; | 67 private int _confidentialPort = 0; |
| 69 private int _acceptors = 1; | 68 private int _acceptors = 1; |
| 70 private int _acceptorPriorityOffset = 0; | 69 private int _acceptorPriorityOffset = 0; |
| 71 private boolean _useDNS; | 70 private boolean _useDNS; |
| 372 return false; | 371 return false; |
| 373 } | 372 } |
| 374 | 373 |
| 375 /* ------------------------------------------------------------ */ | 374 /* ------------------------------------------------------------ */ |
| 376 /* | 375 /* |
| 377 * @see org.eclipse.jetty.server.Connector#getConfidentialPort() | |
| 378 */ | |
| 379 public int getIntegralPort() | |
| 380 { | |
| 381 return _integralPort; | |
| 382 } | |
| 383 | |
| 384 /* ------------------------------------------------------------ */ | |
| 385 /* | |
| 386 * @see org.eclipse.jetty.server.Connector#getIntegralScheme() | 376 * @see org.eclipse.jetty.server.Connector#getIntegralScheme() |
| 387 */ | 377 */ |
| 388 public String getIntegralScheme() | 378 public String getIntegralScheme() |
| 389 { | 379 { |
| 390 return _integralScheme; | 380 return _integralScheme; |
| 415 * The confidentialScheme to set. | 405 * The confidentialScheme to set. |
| 416 */ | 406 */ |
| 417 public void setConfidentialScheme(String confidentialScheme) | 407 public void setConfidentialScheme(String confidentialScheme) |
| 418 { | 408 { |
| 419 _confidentialScheme = confidentialScheme; | 409 _confidentialScheme = confidentialScheme; |
| 420 } | |
| 421 | |
| 422 /* ------------------------------------------------------------ */ | |
| 423 /** | |
| 424 * @param integralPort | |
| 425 * The integralPort to set. | |
| 426 */ | |
| 427 public void setIntegralPort(int integralPort) | |
| 428 { | |
| 429 _integralPort = integralPort; | |
| 430 } | 410 } |
| 431 | 411 |
| 432 /* ------------------------------------------------------------ */ | 412 /* ------------------------------------------------------------ */ |
| 433 /** | 413 /** |
| 434 * @param integralScheme | 414 * @param integralScheme |
