Class: PasswordCredential
- Inherits:
-
Object
- Object
- PasswordCredential
- Defined in:
- lib/crowd/default.rb
Overview
http://authentication.integration.crowd.atlassian.comPasswordCredential
credential - SOAP::SOAPString
encryptedCredential - SOAP::SOAPBoolean
Instance Attribute Summary collapse
-
#credential ⇒ Object
Returns the value of attribute credential.
-
#encryptedCredential ⇒ Object
Returns the value of attribute encryptedCredential.
Instance Method Summary collapse
-
#initialize(credential = nil, encryptedCredential = nil) ⇒ PasswordCredential
constructor
A new instance of PasswordCredential.
Constructor Details
#initialize(credential = nil, encryptedCredential = nil) ⇒ PasswordCredential
Returns a new instance of PasswordCredential.
23 24 25 26 |
# File 'lib/crowd/default.rb', line 23 def initialize(credential = nil, encryptedCredential = nil) @credential = credential @encryptedCredential = encryptedCredential end |
Instance Attribute Details
#credential ⇒ Object
Returns the value of attribute credential.
20 21 22 |
# File 'lib/crowd/default.rb', line 20 def credential @credential end |
#encryptedCredential ⇒ Object
Returns the value of attribute encryptedCredential.
21 22 23 |
# File 'lib/crowd/default.rb', line 21 def encryptedCredential @encryptedCredential end |