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.



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

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

Instance Attribute Details

#idObject

Unique identifier of the IdentitySet.



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

def id
  @id
end

#nameObject

Unique human-readable name of the IdentitySet.



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

def name
  @name
end

Instance Method Details

#to_json(options = {}) ⇒ Object



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

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