Class: Katello::RepositoryType::GenericRemoteOption
- Inherits:
-
Object
- Object
- Katello::RepositoryType::GenericRemoteOption
- Defined in:
- app/services/katello/repository_type.rb
Instance Attribute Summary collapse
-
#default ⇒ Object
Returns the value of attribute default.
-
#delimiter ⇒ Object
Returns the value of attribute delimiter.
-
#description ⇒ Object
Returns the value of attribute description.
-
#input_type ⇒ Object
Returns the value of attribute input_type.
-
#name ⇒ Object
Returns the value of attribute name.
-
#title ⇒ Object
Returns the value of attribute title.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(options) ⇒ GenericRemoteOption
constructor
A new instance of GenericRemoteOption.
Constructor Details
#initialize(options) ⇒ GenericRemoteOption
Returns a new instance of GenericRemoteOption.
232 233 234 235 236 237 238 239 240 |
# File 'app/services/katello/repository_type.rb', line 232 def initialize() self.name = [:name] self.title = [:title] self.type = [:type] self.description = [:description] self.input_type = [:input_type] self.delimiter = [:delimiter] self.default = [:default] end |
Instance Attribute Details
#default ⇒ Object
Returns the value of attribute default.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def default @default end |
#delimiter ⇒ Object
Returns the value of attribute delimiter.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def delimiter @delimiter end |
#description ⇒ Object
Returns the value of attribute description.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def description @description end |
#input_type ⇒ Object
Returns the value of attribute input_type.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def input_type @input_type end |
#name ⇒ Object
Returns the value of attribute name.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def name @name end |
#title ⇒ Object
Returns the value of attribute title.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def title @title end |
#type ⇒ Object
Returns the value of attribute type.
230 231 232 |
# File 'app/services/katello/repository_type.rb', line 230 def type @type end |