home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / net / InetAddressCachePolicy.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  909 b   |  40 lines

  1. package sun.net;
  2.  
  3. import java.security.AccessController;
  4. import sun.security.action.GetIntegerAction;
  5.  
  6. public final class InetAddressCachePolicy {
  7.    private static final String cachePolicyProp = "sun.net.inetaddr.ttl";
  8.    public static final int FOREVER = -1;
  9.    public static final int NEVER = 0;
  10.    private static int cachePolicy;
  11.    private static boolean set = false;
  12.  
  13.    public static synchronized int get() {
  14.       return cachePolicy;
  15.    }
  16.  
  17.    public static synchronized void setIfNotSet(int var0) {
  18.       if (!set) {
  19.          if (var0 > cachePolicy || var0 < -1) {
  20.             throw new SecurityException("can't make InetAddress cache more lax");
  21.          }
  22.  
  23.          cachePolicy = var0;
  24.       }
  25.  
  26.    }
  27.  
  28.    static {
  29.       Integer var0 = (Integer)AccessController.doPrivileged(new GetIntegerAction("sun.net.inetaddr.ttl"));
  30.       if (var0 == null) {
  31.          var0 = new Integer(-1);
  32.          set = false;
  33.       } else {
  34.          set = true;
  35.       }
  36.  
  37.       cachePolicy = var0;
  38.    }
  39. }
  40.