DNS
Class DNSRequest

java.lang.Object
  extended byDNS.DNSRequest

public class DNSRequest
extends java.lang.Object

A DNS Request Message


Field Summary
 int id
          The request ID
 java.lang.String name
          The name that we want to look up.
 boolean recursive
          Should this request be recursive?
 byte[] tsigKey
          for DNSSEC, the RSA-encrypted TSIG KEY
 java.lang.String type
          The type of the record we need.
 
Constructor Summary
DNSRequest(int id, boolean recursive, java.lang.String name, java.lang.String type)
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

id

public final int id
The request ID


recursive

public final boolean recursive
Should this request be recursive?


name

public final java.lang.String name
The name that we want to look up.


type

public final java.lang.String type
The type of the record we need. Generally an A Record, but could be anything


tsigKey

public byte[] tsigKey
for DNSSEC, the RSA-encrypted TSIG KEY

Constructor Detail

DNSRequest

public DNSRequest(int id,
                  boolean recursive,
                  java.lang.String name,
                  java.lang.String type)
Method Detail

toString

public java.lang.String toString()