module Qa::Authorities::Getty

Public Class Methods

subauthorities() click to toggle source
# File lib/qa/authorities/getty.rb, line 10
def self.subauthorities
  ["aat", "tgn", "ulan"]
end
subauthority_class(subauthority) click to toggle source
# File lib/qa/authorities/getty.rb, line 14
def self.subauthority_class(subauthority)
  case subauthority
  when 'aat'
    AAT
  when 'tgn'
    TGN
  when 'ulan'
    Ulan
  end
end