Package org.xbill.DNS
Class MINFORecord
java.lang.Object
org.xbill.DNS.Record
org.xbill.DNS.MINFORecord
- All Implemented Interfaces:
Serializable,Cloneable,Comparable<Record>
Mailbox information Record - lists the address responsible for a mailing list/mailbox and the
address to receive error messages relating to the mailing list/mailbox.
- Author:
- Brian Wellington
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionMINFORecord(Name name, int dclass, long ttl, Name responsibleAddress, Name errorAddress) Creates an MINFO Record from the given data -
Method Summary
Modifier and TypeMethodDescriptionGets the address to receive error messages relating to the mailing list/mailbox.Gets the address responsible for the mailing list/mailbox.protected voidrdataFromString(Tokenizer st, Name origin) Converts the text format of an RR to the internal format - must be overridenprotected voidrrFromWire(DNSInput in) Converts the type-specific RR to wire format - must be overriddenprotected StringConverts the MINFO Record to a Stringprotected voidrrToWire(DNSOutput out, Compression c, boolean canonical) Converts the type-specific RR to wire format - must be overridden.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, sameRRset, toString, toWire, toWireCanonical, unknownToString, withName
-
Constructor Details
-
MINFORecord
Creates an MINFO Record from the given data- Parameters:
responsibleAddress- The address responsible for the mailing list/mailbox.errorAddress- The address to receive error messages relating to the mailing list/mailbox.
-
-
Method Details
-
rrFromWire
Description copied from class:RecordConverts the type-specific RR to wire format - must be overridden- Specified by:
rrFromWirein classRecord- Throws:
IOException
-
rdataFromString
Description copied from class:RecordConverts the text format of an RR to the internal format - must be overriden- Specified by:
rdataFromStringin classRecord- Throws:
IOException
-
rrToString
Converts the MINFO Record to a String- Specified by:
rrToStringin classRecord
-
getResponsibleAddress
Gets the address responsible for the mailing list/mailbox. -
getErrorAddress
Gets the address to receive error messages relating to the mailing list/mailbox. -
rrToWire
Description copied from class:RecordConverts the type-specific RR to wire format - must be overridden.
-