org.xbill.DNS
Class Credibility

java.lang.Object
  extended byorg.xbill.DNS.Credibility

public final class Credibility
extends Object

Constants relating to the credibility of cached data, which is based on the data's source. The constants NORMAL and ANY should be used by most callers.

Author:
Brian Wellington
See Also:
Cache, Section

Field Summary
static byte ADDITIONAL
          The additional section of a response.
static byte ANY
          Data not required to be credible.
static byte AUTH_ANSWER
          The answer section of a authoritative response.
static byte AUTH_AUTHORITY
          The authority section of an authoritative response.
static byte GLUE
          The additional section of a response.
static byte HINT
          A hint or cache file on disk.
static byte NONAUTH_ANSWER
          The answer section of a nonauthoritative response.
static byte NONAUTH_AUTHORITY
          The authority section of a nonauthoritative response.
static byte NORMAL
          Credible data.
static byte ZONE
          A zone.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

HINT

public static final byte HINT
A hint or cache file on disk.

See Also:
Constant Field Values

ADDITIONAL

public static final byte ADDITIONAL
The additional section of a response.

See Also:
Constant Field Values

GLUE

public static final byte GLUE
The additional section of a response.

See Also:
Constant Field Values

NONAUTH_AUTHORITY

public static final byte NONAUTH_AUTHORITY
The authority section of a nonauthoritative response.

See Also:
Constant Field Values

NONAUTH_ANSWER

public static final byte NONAUTH_ANSWER
The answer section of a nonauthoritative response.

See Also:
Constant Field Values

AUTH_AUTHORITY

public static final byte AUTH_AUTHORITY
The authority section of an authoritative response.

See Also:
Constant Field Values

AUTH_ANSWER

public static final byte AUTH_ANSWER
The answer section of a authoritative response.

See Also:
Constant Field Values

ZONE

public static final byte ZONE
A zone.

See Also:
Constant Field Values

NORMAL

public static final byte NORMAL
Credible data.

See Also:
Constant Field Values

ANY

public static final byte ANY
Data not required to be credible.

See Also:
Constant Field Values