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 void
rdataFromString
(Tokenizer st, Name origin) Converts the text format of an RR to the internal format - must be overridenprotected void
rrFromWire
(DNSInput in) Converts the type-specific RR to wire format - must be overriddenprotected String
Converts the MINFO Record to a Stringprotected void
rrToWire
(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:Record
Converts the type-specific RR to wire format - must be overridden- Specified by:
rrFromWire
in classRecord
- Throws:
IOException
-
rdataFromString
Description copied from class:Record
Converts the text format of an RR to the internal format - must be overriden- Specified by:
rdataFromString
in classRecord
- Throws:
IOException
-
rrToString
Converts the MINFO Record to a String- Specified by:
rrToString
in 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:Record
Converts the type-specific RR to wire format - must be overridden.
-