Javadocs for ContainerProperties constants

This commit is contained in:
Gary Russell
2018-06-19 10:23:36 -04:00
parent 40f76f0809
commit 2cd4d9dc3b

View File

@@ -46,12 +46,24 @@ import org.springframework.util.StringUtils;
*/
public class ContainerProperties {
/**
* The default {@link #setPollTimeout(long) pollTimeout} (ms).
*/
public static final long DEFAULT_POLL_TIMEOUT = 1000L;
/**
* The default {@link #setShutdownTimeout(long) shutDownTimeout} (ms).
*/
public static final int DEFAULT_SHUTDOWN_TIMEOUT = 10000;
/**
* The default {@link #setMonitorInterval(int) monitorInterval} (s).
*/
public static final int DEFAULT_MONITOR_INTERVAL = 30;
/**
* The default {@link #setNoPollThreshold(float) noPollThreshold}.
*/
public static final float DEFAULT_NO_POLL_THRESHOLD = 3f;
/**