Class: Puppet::SSL::StateMachine::KeySSLState
- Defined in:
- lib/puppet/ssl/state_machine.rb
Overview
Base class for states with a private key.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#private_key ⇒ Object
readonly
Returns the value of attribute private_key.
Attributes inherited from SSLState
Instance Method Summary collapse
-
#initialize(machine, ssl_context, private_key) ⇒ KeySSLState
constructor
A new instance of KeySSLState.
Methods inherited from SSLState
Constructor Details
#initialize(machine, ssl_context, private_key) ⇒ KeySSLState
Returns a new instance of KeySSLState.
199 200 201 202 |
# File 'lib/puppet/ssl/state_machine.rb', line 199 def initialize(machine, ssl_context, private_key) super(machine, ssl_context) @private_key = private_key end |
Instance Attribute Details
#private_key ⇒ Object (readonly)
Returns the value of attribute private_key.
197 198 199 |
# File 'lib/puppet/ssl/state_machine.rb', line 197 def private_key @private_key end |