Class: OpenEHR::RM::Support::Identification::LocatableRef
- Defined in:
- lib/open_ehr/rm/support/identification.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
Attributes inherited from ObjectRef
Instance Method Summary collapse
- #as_uri ⇒ Object
-
#initialize(args = {}) ⇒ LocatableRef
constructor
A new instance of LocatableRef.
Constructor Details
#initialize(args = {}) ⇒ LocatableRef
Returns a new instance of LocatableRef.
295 296 297 298 |
# File 'lib/open_ehr/rm/support/identification.rb', line 295 def initialize(args = {}) super(args) self.path = args[:path] end |
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path.
293 294 295 |
# File 'lib/open_ehr/rm/support/identification.rb', line 293 def path @path end |
Instance Method Details
#as_uri ⇒ Object
305 306 307 |
# File 'lib/open_ehr/rm/support/identification.rb', line 305 def as_uri 'ehr://' + @id.value + '/' + @path end |