Class: OpenEHR::RM::Support::Identification::LocatableRef

Inherits:
ObjectRef
  • Object
show all
Defined in:
lib/open_ehr/rm/support/identification.rb

Instance Attribute Summary collapse

Attributes inherited from ObjectRef

#id, #namespace, #type

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ LocatableRef

Returns a new instance of LocatableRef.



291
292
293
294
# File 'lib/open_ehr/rm/support/identification.rb', line 291

def initialize(args = {})
  super(args)
  self.path = args[:path]
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



289
290
291
# File 'lib/open_ehr/rm/support/identification.rb', line 289

def path
  @path
end

Instance Method Details

#as_uriObject



301
302
303
# File 'lib/open_ehr/rm/support/identification.rb', line 301

def as_uri
  'ehr://' + @id.value + '/' + @path
end