Class: ServerAuthResult
- Inherits:
-
Object
- Object
- ServerAuthResult
- Defined in:
- lib/stub/default.rb
Overview
urn:wsurn:ws.rsysurn:ws.rsys.comServerAuthResult
authSessionId - SOAP::SOAPString
encryptedClientChallenge - SOAP::SOAPByte
serverChallenge - SOAP::SOAPByte
Instance Attribute Summary collapse
-
#authSessionId ⇒ Object
Returns the value of attribute authSessionId.
-
#encryptedClientChallenge ⇒ Object
Returns the value of attribute encryptedClientChallenge.
-
#serverChallenge ⇒ Object
Returns the value of attribute serverChallenge.
Instance Method Summary collapse
-
#initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = []) ⇒ ServerAuthResult
constructor
A new instance of ServerAuthResult.
Constructor Details
#initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = []) ⇒ ServerAuthResult
Returns a new instance of ServerAuthResult.
22 23 24 25 26 |
# File 'lib/stub/default.rb', line 22 def initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = []) @authSessionId = authSessionId @encryptedClientChallenge = encryptedClientChallenge @serverChallenge = serverChallenge end |
Instance Attribute Details
#authSessionId ⇒ Object
Returns the value of attribute authSessionId.
18 19 20 |
# File 'lib/stub/default.rb', line 18 def authSessionId @authSessionId end |
#encryptedClientChallenge ⇒ Object
Returns the value of attribute encryptedClientChallenge.
19 20 21 |
# File 'lib/stub/default.rb', line 19 def encryptedClientChallenge @encryptedClientChallenge end |
#serverChallenge ⇒ Object
Returns the value of attribute serverChallenge.
20 21 22 |
# File 'lib/stub/default.rb', line 20 def serverChallenge @serverChallenge end |