On-Behalf-Of username for authenticating with the Sword server
Password for authenticating with the Sword server
Username for authenticating with the Sword server
Creates a new User object.
(optional) string value of the username.
(optional) string value of the password.
(optional) string value indicating the username on whos behalf the actions will be performed.
# File lib/sword2ruby/user.rb, line 18 def initialize(username=nil, password=nil, on_behalf_of=nil) @username = username; @password = password; @on_behalf_of = on_behalf_of; end