module SIF::Model::Group::SIS::SISRepresenter

Public Instance Methods

find_element(name) click to toggle source
# File lib/sif/models/groups/sis/sis_representer.rb, line 12
def find_element(name)
  return nil if extended_elements.nil?
  el = extended_elements.find{ |e| e.name == name }
  el ? el.value : nil
end
password() click to toggle source
# File lib/sif/models/groups/sis/sis_representer.rb, line 22
def password
  find_element("PASSWORD")
end
username() click to toggle source
# File lib/sif/models/groups/sis/sis_representer.rb, line 18
def username
  find_element("USERNAME")
end