Class: Hyrax::Work
- Defined in:
- app/models/hyrax/work.rb
Overview
Some collection types limit a work to belong to one and only one collection of that type.
:member_ids holds ids of child works and file sets.
Valkyrie model for Work domain objects in the Hydra Works model.
Relationships
Administrative Set and Work
- Defined: The relationship is defined by the work's
:admin_set_idattribute. - Tested: The relationship is tested in shared spec
'a Hyrax::Work'by testing#admin_set_id. Shared specs are defined in /lib/hyrax/specs/shared_specs/hydra_works.rb. - Administrative Set to Work: (1..m) An admin set can have many works.
- See Hyrax::AdministrativeSet for code to get works in an admin set.
- Work to Administrative Set: (1..1) A work must be in one and only one admin set.
Collection and Work
- Defined: The relationship is defined by the work's
:member_of_collection_idsattribute. - Tested: The relationship is tested in shared spec
'a Hyrax::Work'by testingit_behaves_like 'belongs to collections'. Shared specs are defined in /lib/hyrax/specs/shared_specs/hydra_works.rb. - Collection to Work: (0..m) A collection can have many works.
- See Hyrax::PcdmCollection for code to get works in a collection.
- Work to Collection: (0..m) A work can be in many collections.
Work and Work
-
Defined: The relationship is defined in the parent work's
:member_idsattribute. -
Tested: The relationship is tested in shared spec
'a Hyrax::Work'by testingit_behaves_like 'has_members'. Shared specs are defined in /lib/hyrax/specs/shared_specs/hydra_works.rb. -
Work to child Work: (0..m) A work can have many child works.
-
Work to parent Work: (0..1) A work can be in at most one parent work.
Work and File Set
- Defined: The relationship is defined in the parent work's
:member_idsattribute. - Tested: The relationship is tested in shared spec
'a Hyrax::Work'by testingit_behaves_like 'has_members'. Shared specs are defined in /lib/hyrax/specs/shared_specs/hydra_works.rb. - Work to File Set: (0..m) A work can have many file sets.
- File Set to Work: (1..1) A file set must be in one and only one work.
- See Hyrax::FileSet for code to get the work a file set is in.
Direct Known Subclasses
Class Method Summary collapse
-
.pcdm_object? ⇒ Boolean
True.
Methods inherited from Resource
#==, acts_as_flexible_resource, collection?, #collection?, #file?, file?, #file_set?, file_set?, #flexible?, flexible?, human_readable_type, inherited, pcdm_collection?, #pcdm_collection?, #pcdm_object?, #permission_manager, to_rdf_representation, #to_rdf_representation, #visibility, #visibility=, #wings?, work?, #work?
Methods included from WithEmbargoesAndLeases
#embargo, #embargo=, #lease, #lease=
Methods included from WithEvents
#event_class, #events, #log_event, #stream
Class Method Details
.pcdm_object? ⇒ Boolean
Returns true.
111 112 113 |
# File 'app/models/hyrax/work.rb', line 111 def self.pcdm_object? true end |