blob: 7bcbcd57b3db76a7a3af35b3266f05be28d285fc [file] [log] [blame]
// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
package org.xbill.DNS;
/**
* The Name Server Identifier Option, define in RFC 5001.
*
* @see OPTRecord
*
* @author Brian Wellington
*/
public class NSIDOption extends GenericEDNSOption {
private static final long serialVersionUID = 74739759292589056L;
NSIDOption() {
super(EDNSOption.Code.NSID);
}
/**
* Construct an NSID option.
* @param data The contents of the option.
*/
public
NSIDOption(byte [] data) {
super(EDNSOption.Code.NSID, data);
}
}