Class: Individual

Inherits:
Principal show all
Defined in:
lib/individual.rb

Instance Attribute Summary

Attributes inherited from ACL_Object

#col_path, #doc

Instance Method Summary collapse

Methods inherited from Principal

#add_membership, #delete, #eq, #ne

Methods inherited from ACL_Object

#add_membership, #del_membership, #delete, #find_parents, #ge, #rename

Constructor Details

#initialize(connector, col_path, report = false) ⇒ Individual

Returns a new instance of Individual.



3
4
5
# File 'lib/individual.rb', line 3

def initialize(connector, col_path, report = false)
  super(connector, col_path, report)
end

Instance Method Details

#create_new(name, groups) ⇒ Object



8
9
10
11
12
# File 'lib/individual.rb', line 8

def create_new(name, groups)
  super(name, groups)
rescue => e
  raise e
end