Class: Y2Network::Widgets::EapTls
- Inherits:
-
CWM::CustomWidget
- Object
- CWM::CustomWidget
- Y2Network::Widgets::EapTls
- Defined in:
- src/lib/y2network/widgets/wireless_eap.rb
Overview
High level widget that represent TLS authentication
Instance Attribute Summary collapse
-
#settings ⇒ Object
readonly
Returns the value of attribute settings.
Instance Method Summary collapse
- #contents ⇒ Object
-
#initialize(settings) ⇒ EapTls
constructor
A new instance of EapTls.
Constructor Details
#initialize(settings) ⇒ EapTls
Returns a new instance of EapTls.
131 132 133 |
# File 'src/lib/y2network/widgets/wireless_eap.rb', line 131 def initialize(settings) @settings = settings end |
Instance Attribute Details
#settings ⇒ Object (readonly)
Returns the value of attribute settings.
129 130 131 |
# File 'src/lib/y2network/widgets/wireless_eap.rb', line 129 def settings @settings end |
Instance Method Details
#contents ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'src/lib/y2network/widgets/wireless_eap.rb', line 135 def contents VBox( HStretch(), EapUser.new(@settings), ClientCertPath.new(@settings), HBox( ClientKeyPath.new(@settings), HSpacing(1), ClientKeyPassword.new(@settings) ), ServerCAPath.new(@settings) ) end |