Class: PasswordCredential

Inherits:
Object
  • Object
show all
Defined in:
lib/crowd/soap/default.rb

Overview

http://authentication.integration.crowd.atlassian.comPasswordCredential

credential - SOAP::SOAPString
encryptedCredential - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(credential = nil, encryptedCredential = nil) ⇒ PasswordCredential

Returns a new instance of PasswordCredential.



23
24
25
26
# File 'lib/crowd/soap/default.rb', line 23

def initialize(credential = nil, encryptedCredential = nil)
  @credential = credential
  @encryptedCredential = encryptedCredential
end

Instance Attribute Details

#credentialObject

Returns the value of attribute credential.



20
21
22
# File 'lib/crowd/soap/default.rb', line 20

def credential
  @credential
end

#encryptedCredentialObject

Returns the value of attribute encryptedCredential.



21
22
23
# File 'lib/crowd/soap/default.rb', line 21

def encryptedCredential
  @encryptedCredential
end