Class: AuthenticatedToken
- Inherits:
-
Object
- Object
- AuthenticatedToken
- Defined in:
- lib/crowd/default.rb
Overview
http://authentication.integration.crowd.atlassian.comAuthenticatedToken
name - SOAP::SOAPString
token - SOAP::SOAPString
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#token ⇒ Object
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(name = nil, token = nil) ⇒ AuthenticatedToken
constructor
A new instance of AuthenticatedToken.
Constructor Details
#initialize(name = nil, token = nil) ⇒ AuthenticatedToken
Returns a new instance of AuthenticatedToken.
10 11 12 13 |
# File 'lib/crowd/default.rb', line 10 def initialize(name = nil, token = nil) @name = name @token = token end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
7 8 9 |
# File 'lib/crowd/default.rb', line 7 def name @name end |
#token ⇒ Object
Returns the value of attribute token.
8 9 10 |
# File 'lib/crowd/default.rb', line 8 def token @token end |