Class: AuthenticatedToken
- Inherits:
-
Object
- Object
- AuthenticatedToken
- Defined in:
- lib/crowd/default.rb
Overview
http://authentication.integration.crowd.atlassian.comAuthenticatedToken
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.
8 9 10 11 |
# File 'lib/crowd/default.rb', line 8 def initialize(name = nil, token = nil) @name = name @token = token end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
5 6 7 |
# File 'lib/crowd/default.rb', line 5 def name @name end |
#token ⇒ Object
Returns the value of attribute token.
6 7 8 |
# File 'lib/crowd/default.rb', line 6 def token @token end |