Class: AuthenticateServer
- Inherits:
-
Object
- Object
- AuthenticateServer
- Defined in:
- lib/stub/default.rb
Overview
urn:wsurn:ws.rsysurn:ws.rsys.comauthenticateServer
username - SOAP::SOAPString
clientChallenge - SOAP::SOAPByte
Instance Attribute Summary collapse
-
#clientChallenge ⇒ Object
Returns the value of attribute clientChallenge.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(username = nil, clientChallenge = []) ⇒ AuthenticateServer
constructor
A new instance of AuthenticateServer.
Constructor Details
#initialize(username = nil, clientChallenge = []) ⇒ AuthenticateServer
Returns a new instance of AuthenticateServer.
994 995 996 997 |
# File 'lib/stub/default.rb', line 994 def initialize(username = nil, clientChallenge = []) @username = username @clientChallenge = clientChallenge end |
Instance Attribute Details
#clientChallenge ⇒ Object
Returns the value of attribute clientChallenge.
992 993 994 |
# File 'lib/stub/default.rb', line 992 def clientChallenge @clientChallenge end |
#username ⇒ Object
Returns the value of attribute username.
991 992 993 |
# File 'lib/stub/default.rb', line 991 def username @username end |