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

Inherits:
ObjectRef
  • Object
show all
Defined in:
lib/openehr/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.



296
297
298
299
# File 'lib/openehr/rm/support/identification.rb', line 296

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

Instance Attribute Details

#pathObject

Returns the value of attribute path.



294
295
296
# File 'lib/openehr/rm/support/identification.rb', line 294

def path
  @path
end

Instance Method Details

#as_uriObject



306
307
308
309
310
# File 'lib/openehr/rm/support/identification.rb', line 306

def as_uri
  uri = 'ehr://' + @id.value
  uri += '/' + @path unless @path.nil?
  uri
end