Class: Identifier::Global::Uuid::TaxonworksDwcOccurrence
- Inherits:
-
Identifier::Global::Uuid
- Object
- ActiveRecord::Base
- ApplicationRecord
- Identifier
- Identifier::Global
- Identifier::Global::Uuid
- Identifier::Global::Uuid::TaxonworksDwcOccurrence
- Defined in:
- app/models/identifier/global/uuid/taxonworks_dwc_occurrence.rb
Overview
The proxy for a DwC occurrenceID if no other UUID for a given instance is present.
Created automatically during DwC indexing if not present.
Constant Summary
Constants included from SoftValidation
SoftValidation::ANCESTORS_WITH_SOFT_VALIDATIONS
Constants included from Shared::DualAnnotator
Shared::DualAnnotator::ALWAYS_COMMUNITY
Instance Attribute Summary
Attributes inherited from Identifier::Global::Uuid
Attributes inherited from Identifier::Global
Attributes inherited from Identifier
#cached, #cached_numeric_identifier, #identifier, #identifier_object_id, #namespace_id, #project_id, #type
Instance Method Summary collapse
Methods inherited from Identifier::Global::Uuid
#generate_uuid, #using_uuid_class
Methods inherited from Identifier::Global
#build_cached, #dwc_occurrences, #is_global?, #sv_resolves?
Methods included from SoftValidation
#clear_soft_validations, #fix_for, #fix_soft_validations, #soft_fixed?, #soft_valid?, #soft_validate, #soft_validated?, #soft_validations, #soft_validators
Methods inherited from Identifier
#build_cached, #build_cached_numeric_identifier, #is_global?, #is_local?, prototype_identifier, #set_cached, #type_name
Methods included from Shared::IsData
#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar
Methods included from Shared::Labels
Methods included from Housekeeping
#has_polymorphic_relationship?
Methods included from Shared::PolymorphicAnnotator
#annotated_object_is_persisted?
Methods inherited from ApplicationRecord
Instance Method Details
#object_may_be_a_dwc_occurrence ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/models/identifier/global/uuid/taxonworks_dwc_occurrence.rb', line 8 def object_may_be_a_dwc_occurrence a = identifier_object_type&.safe_constantize if !identifier_object.nil? a ||= identifier_object.class.name end if a && !a.dwc_occurrence_eligible? errors.add(:identifier_object_type, "#{identifier_object_type} can not be indexed as a DwC occurrence") end end |