Class: SDM::IdentitySet

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

A IdentitySet defines a group of identity aliases.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil) ⇒ IdentitySet



7420
7421
7422
7423
7424
7425
7426
# File 'lib/models/porcelain.rb', line 7420

def initialize(
  id: nil,
  name: nil
)
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
end

Instance Attribute Details

#idObject

Unique identifier of the IdentitySet.



7416
7417
7418
# File 'lib/models/porcelain.rb', line 7416

def id
  @id
end

#nameObject

Unique human-readable name of the IdentitySet.



7418
7419
7420
# File 'lib/models/porcelain.rb', line 7418

def name
  @name
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7428
7429
7430
7431
7432
7433
7434
# File 'lib/models/porcelain.rb', line 7428

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end