module ADIWG::Mdtranslator::Readers::Fgdc::OnlineResource

Public Class Methods

unpack(onLink, description, hResponseObj) click to toggle source
# File lib/adiwg/mdtranslator/readers/fgdc/modules/module_onlineResource.rb, line 17
def self.unpack(onLink, description, hResponseObj)

   # instance classes needed in script
   intMetadataClass = InternalMetadata.new
   hURI = intMetadataClass.newOnlineResource

   hURI[:olResURI] = onLink
   hURI[:olResDesc] = description

   return hURI

end