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.



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

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

Instance Attribute Details

#pathObject

Returns the value of attribute path.



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

def path
  @path
end

Instance Method Details

#as_uriObject



304
305
306
# File 'lib/openehr/rm/support/identification.rb', line 304

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