Class: RubySMB::Gss::Provider::NTLM::Account
- Inherits:
-
Struct
- Object
- Struct
- RubySMB::Gss::Provider::NTLM::Account
- Defined in:
- lib/ruby_smb/gss/provider/ntlm.rb
Overview
An account representing an identity for which this provider will accept authentication attempts.
Instance Attribute Summary collapse
-
#domain ⇒ Object
Returns the value of attribute domain.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
Instance Attribute Details
#domain ⇒ Object
Returns the value of attribute domain
14 15 16 |
# File 'lib/ruby_smb/gss/provider/ntlm.rb', line 14 def domain @domain end |
#password ⇒ Object
Returns the value of attribute password
14 15 16 |
# File 'lib/ruby_smb/gss/provider/ntlm.rb', line 14 def password @password end |
#username ⇒ Object
Returns the value of attribute username
14 15 16 |
# File 'lib/ruby_smb/gss/provider/ntlm.rb', line 14 def username @username end |
Instance Method Details
#to_s ⇒ Object
15 16 17 |
# File 'lib/ruby_smb/gss/provider/ntlm.rb', line 15 def to_s "#{domain}\\#{username}" end |