Class: DNS::Zonefile::NAPTR

Inherits:
Record
  • Object
show all
Defined in:
lib/dns/zonefile.rb

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

inheriting_writer_for_at, writer_for_at, writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ NAPTR

Returns a new instance of NAPTR.



213
214
215
216
217
218
219
220
221
222
# File 'lib/dns/zonefile.rb', line 213

def initialize(vars, zonefile_record)
	@vars = vars
	if zonefile_record
	  self.host         = zonefile_record.host.to_s
	  @vars[:last_host] = self.host
	  self.ttl          = zonefile_record.ttl.to_i
	  self.klass        = zonefile_record.klass.to_s
	  self.data         = zonefile_record.data.to_s
	end
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



209
210
211
# File 'lib/dns/zonefile.rb', line 209

def data
  @data
end

#hostObject

Returns the value of attribute host.



209
210
211
# File 'lib/dns/zonefile.rb', line 209

def host
  @host
end