Class: Valkyrie::Persistence::Postgres::ORMConverter::RDFMetadata::IDValue

Inherits:
ValueMapper
  • Object
show all
Defined in:
lib/valkyrie/persistence/postgres/orm_converter.rb

Overview

Converts stored IDs into IDs

Instance Attribute Summary

Attributes inherited from ValueMapper

#calling_mapper, #value

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ValueMapper

for, #initialize, register

Constructor Details

This class inherits a constructor from Valkyrie::ValueMapper

Class Method Details

.handles?(value) ⇒ Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/valkyrie/persistence/postgres/orm_converter.rb', line 77

def self.handles?(value)
  value.is_a?(Hash) && value["id"] && !value["internal_resource"]
end

Instance Method Details

#resultObject



81
82
83
# File 'lib/valkyrie/persistence/postgres/orm_converter.rb', line 81

def result
  Valkyrie::ID.new(value["id"])
end