mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
Fix checkstyle in Prober (#221)
This commit is contained in:
parent
ab73bd588f
commit
efcd57eea4
1 changed files with 3 additions and 2 deletions
|
@ -44,12 +44,13 @@ public class WebWhoisModule {
|
||||||
|
|
||||||
private static final String HTTP_PROTOCOL_NAME = "http";
|
private static final String HTTP_PROTOCOL_NAME = "http";
|
||||||
private static final String HTTPS_PROTOCOL_NAME = "https";
|
private static final String HTTPS_PROTOCOL_NAME = "https";
|
||||||
|
private static final int HTTP_WHOIS_PORT = 80;
|
||||||
|
private static final int HTTPS_WHOIS_PORT = 443;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard length of messages used by Proxy. Equates to 0.5 MB.
|
* Standard length of messages used by Proxy. Equates to 0.5 MB.
|
||||||
*/
|
*/
|
||||||
private static final int maximumMessageLengthBytes = 512 * 1024;
|
private static final int maximumMessageLengthBytes = 512 * 1024;
|
||||||
private final int HTTP_WHOIS_PORT = 80;
|
|
||||||
private final int HTTPS_WHOIS_PORT = 443;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link Provides} only step used in WebWhois sequence.
|
* {@link Provides} only step used in WebWhois sequence.
|
||||||
|
|
Loading…
Add table
Reference in a new issue