Class: LogStash::Util::Password

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(password) ⇒ Password

Returns a new instance of Password.



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

def initialize(password)
  @value = password
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



6
7
8
# File 'lib/logstash/util/password.rb', line 6

def value
  @value
end

Instance Method Details

#inspectObject



19
20
21
# File 'lib/logstash/util/password.rb', line 19

def inspect
  return to_s
end

#to_sObject



14
15
16
# File 'lib/logstash/util/password.rb', line 14

def to_s
  return "<password>"
end