Class: Id3Taginator::Frames::Encryption::Entities::EncryptionMethod
- Inherits:
-
Object
- Object
- Id3Taginator::Frames::Encryption::Entities::EncryptionMethod
- Includes:
- Extensions::Comparable
- Defined in:
- lib/id3taginator/frames/encryption/entities/encryption_method.rb
Instance Attribute Summary collapse
-
#encryption_data ⇒ Object
Returns the value of attribute encryption_data.
-
#method_symbol ⇒ Object
Returns the value of attribute method_symbol.
-
#owner_id ⇒ Object
Returns the value of attribute owner_id.
Instance Method Summary collapse
-
#initialize(owner_id, method_symbol, encryption_data) ⇒ EncryptionMethod
constructor
constructor.
Methods included from Extensions::Comparable
Constructor Details
#initialize(owner_id, method_symbol, encryption_data) ⇒ EncryptionMethod
constructor
17 18 19 20 21 |
# File 'lib/id3taginator/frames/encryption/entities/encryption_method.rb', line 17 def initialize(owner_id, method_symbol, encryption_data) @owner_id = owner_id @method_symbol = method_symbol @encryption_data = encryption_data end |
Instance Attribute Details
#encryption_data ⇒ Object
Returns the value of attribute encryption_data.
10 11 12 |
# File 'lib/id3taginator/frames/encryption/entities/encryption_method.rb', line 10 def encryption_data @encryption_data end |
#method_symbol ⇒ Object
Returns the value of attribute method_symbol.
10 11 12 |
# File 'lib/id3taginator/frames/encryption/entities/encryption_method.rb', line 10 def method_symbol @method_symbol end |
#owner_id ⇒ Object
Returns the value of attribute owner_id.
10 11 12 |
# File 'lib/id3taginator/frames/encryption/entities/encryption_method.rb', line 10 def owner_id @owner_id end |