Searched defs:newPolicy (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/
H A DInetAddressCachePolicy.java168 * @param newPolicy the value in seconds for how long the lookup
171 public static synchronized void setIfNotSet(int newPolicy) { argument
178 checkValue(newPolicy, cachePolicy);
179 cachePolicy = newPolicy;
187 * @param newPolicy the value in seconds for how long the lookup
190 public static synchronized void setNegativeIfNotSet(int newPolicy) { argument
199 // checkValue(newPolicy, negativeCachePolicy);
200 negativeCachePolicy = newPolicy;
204 private static void checkValue(int newPolicy, int oldPolicy) { argument
210 if (newPolicy
[all...]

Completed in 33 milliseconds