Class: SDM::RoleGrant

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

Overview

A RoleGrant connects a resource to a role, granting members of the role access to that resource.

Deprecated: use Role access rules instead.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, resource_id: nil, role_id: nil) ⇒ RoleGrant

Returns a new instance of RoleGrant.



5282
5283
5284
5285
5286
5287
5288
5289
5290
# File 'lib/models/porcelain.rb', line 5282

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

Instance Attribute Details

#idObject

Unique identifier of the RoleGrant.



5276
5277
5278
# File 'lib/models/porcelain.rb', line 5276

def id
  @id
end

#resource_idObject

The id of the resource of this RoleGrant.



5278
5279
5280
# File 'lib/models/porcelain.rb', line 5278

def resource_id
  @resource_id
end

#role_idObject

The id of the attached role of this RoleGrant.



5280
5281
5282
# File 'lib/models/porcelain.rb', line 5280

def role_id
  @role_id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



5292
5293
5294
5295
5296
5297
5298
# File 'lib/models/porcelain.rb', line 5292

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