Package org.minidns.record
Class SRV
java.lang.Object
org.minidns.record.Data
org.minidns.record.SRV
- All Implemented Interfaces:
 Comparable<SRV>
SRV record payload (service pointer).
- 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionintgetType()The payload type.booleanCheck if the service is available at this domain.static SRVparse(DataInputStream dis, byte[] data) voidThe internal method used to serialize Data subclasses.toString()Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream 
- 
Field Details
- 
priority
public final int priorityThe priority of this service. Lower values mean higher priority. - 
weight
public final int weightThe weight of this service. Services with the same priority should be balanced based on weight. - 
port
public final int portThe target port. - 
target
The target server. - 
name
Deprecated.usetargetinstead.The target server. 
 - 
 - 
Constructor Details
- 
SRV
 - 
SRV
 
 - 
 - 
Method Details
- 
parse
- Throws:
 IOException
 - 
isServiceAvailable
public boolean isServiceAvailable()Check if the service is available at this domain. This checks f the target points to the root label. As per RFC 2782 the service is decidedly not available if there is only a single SRV answer pointing to the root label. From RFC 2782:A Target of "." means that the service is decidedly not available at this domain.
- Returns:
 - true if the service is available at this domain.
 
 - 
serialize
Description copied from class:DataThe internal method used to serialize Data subclasses.- Specified by:
 serializein classData- Parameters:
 dos- the output stream to serialize to.- Throws:
 IOException- if an I/O error occurs.
 - 
toString
 - 
getType
Description copied from class:DataThe payload type. - 
compareTo
- Specified by:
 compareToin interfaceComparable<SRV>
 
 - 
 
targetinstead.