Class: LogStash::Util::Password

Inherits:
Object
  • Object
show all
Defined in:
lib/logstash/util/password.rb

Overview

This class exists to quietly wrap a password string so that, when printed or logged, you don’t accidentally print the password itself.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(password) ⇒ Password

Returns a new instance of Password.



11
12
13
# File 'lib/logstash/util/password.rb', line 11

def initialize(password)
  @value = password
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



8
9
10
# File 'lib/logstash/util/password.rb', line 8

def value
  @value
end

Instance Method Details

#inspectObject



21
22
23
# File 'lib/logstash/util/password.rb', line 21

def inspect
  return to_s
end

#to_sObject



16
17
18
# File 'lib/logstash/util/password.rb', line 16

def to_s
  return "<password>"
end