Sha256: 45d2c9808b14781f94e231148ce5a2c2994233616601a3b91286a0ea7bc04a9f

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

# GenericContent:  EXAMPLE Model that conforms to the Hydra genericContent and genericMetadata cModels 
require 'deprecation'
class GenericContent < ActiveFedora::Base
  extend Deprecation

  # Uses the Hydra Rights Metadata Schema for tracking access permissions & copyright
  #  FIXME:  should this have   "include Hydra::ModelMixins::CommonMetadata" instead?
  has_metadata :name => "rightsMetadata", :type => Hydra::Datastream::RightsMetadata 

  # Uses the GenericContent mixin to conform to the Hydra genericContent cModel
  include Hydra::GenericContent
  
  has_metadata :name => "descMetadata", :type => Hydra::Datastream::ModsGenericContent

  # A place to put extra metadata values, e.g. the user id of the object depositor (for permissions)
  has_metadata :name => "properties", :type => Hydra::Datastream::Properties
  
  # adds helpful methods for basic hydra objects.  
  # FIXME:  redundate with  GenericContent include above??
  include Hydra::ModelMethods
  
  def initialize( attrs={} )
    Deprecation.warn(GenericContent, "GenericContent is deprecated and will be removed in hydra-head 5.x")
    super
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hydra-head-4.1.3 app/models/generic_content.rb
hydra-head-4.1.2 app/models/generic_content.rb
hydra-head-4.1.1 app/models/generic_content.rb
hydra-head-4.1.0 app/models/generic_content.rb