1 // Copyright (c) 1999-2004 Brian Wellington (bwelling (at) xbill.org) 2 3 package org.xbill.DNS; 4 5 /** 6 * The Name Server Identifier Option, define in RFC 5001. 7 * 8 * @see OPTRecord 9 * 10 * @author Brian Wellington 11 */ 12 public class NSIDOption extends GenericEDNSOption { 13 14 private static final long serialVersionUID = 74739759292589056L; 15 16 NSIDOption() { 17 super(EDNSOption.Code.NSID); 18 } 19 20 /** 21 * Construct an NSID option. 22 * @param data The contents of the option. 23 */ 24 public 25 NSIDOption(byte [] data) { 26 super(EDNSOption.Code.NSID, data); 27 } 28 29 } 30