org.xbill.DNS
Class SPFRecord

java.lang.Object
  extended by org.xbill.DNS.Record
      extended by org.xbill.DNS.SPFRecord
All Implemented Interfaces:
Cloneable, Comparable

public class SPFRecord
extends Record

Sender Policy Framework (RFC 4408, experimental)

Author:
Brian Wellington

Field Summary
protected  List strings
           
 
Fields inherited from class org.xbill.DNS.Record
dclass, name, ttl, type
 
Constructor Summary
SPFRecord(Name name, int dclass, long ttl, List strings)
          Creates a SPF Record from the given data
SPFRecord(Name name, int dclass, long ttl, String string)
          Creates a SPF Record from the given data
 
Method Summary
 List getStrings()
          Returns the text strings
 List getStringsAsByteArrays()
          Returns the text strings
 
Methods inherited from class org.xbill.DNS.Record
byteArrayFromString, byteArrayToString, compareTo, equals, fromString, fromString, fromWire, getAdditionalName, getDClass, getName, getRRsetType, getTTL, getType, hashCode, newRecord, newRecord, newRecord, newRecord, rdataToString, rdataToWireCanonical, sameRRset, toString, toWire, toWireCanonical, unknownToString, withName
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

strings

protected List strings
Constructor Detail

SPFRecord

public SPFRecord(Name name,
                 int dclass,
                 long ttl,
                 List strings)
Creates a SPF Record from the given data

Parameters:
strings - The text strings
Throws:
IllegalArgumentException - One of the strings has invalid escapes

SPFRecord

public SPFRecord(Name name,
                 int dclass,
                 long ttl,
                 String string)
Creates a SPF Record from the given data

Parameters:
string - One text string
Throws:
IllegalArgumentException - The string has invalid escapes
Method Detail

getStrings

public List getStrings()
Returns the text strings

Returns:
A list of Strings corresponding to the text strings.

getStringsAsByteArrays

public List getStringsAsByteArrays()
Returns the text strings

Returns:
A list of byte arrays corresponding to the text strings.