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

Returns a new instance of IdentitySet.



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

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

Instance Attribute Details

#idObject

Unique identifier of the IdentitySet.



7426
7427
7428
# File 'lib/models/porcelain.rb', line 7426

def id
  @id
end

#nameObject

Unique human-readable name of the IdentitySet.



7428
7429
7430
# File 'lib/models/porcelain.rb', line 7428

def name
  @name
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7438
7439
7440
7441
7442
7443
7444
# File 'lib/models/porcelain.rb', line 7438

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