Class: Moxml::Signature::Model::Reference
- Inherits:
-
Object
- Object
- Moxml::Signature::Model::Reference
- Defined in:
- lib/moxml/signature/model/reference.rb
Instance Attribute Summary collapse
-
#digest_method ⇒ Object
Returns the value of attribute digest_method.
-
#digest_value ⇒ Object
Returns the value of attribute digest_value.
-
#id ⇒ Object
Returns the value of attribute id.
-
#transforms ⇒ Object
Returns the value of attribute transforms.
-
#type ⇒ Object
Returns the value of attribute type.
-
#uri ⇒ Object
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(id: nil, uri: nil, type: nil, transforms: nil, digest_method: nil, digest_value: nil) ⇒ Reference
constructor
A new instance of Reference.
Constructor Details
#initialize(id: nil, uri: nil, type: nil, transforms: nil, digest_method: nil, digest_value: nil) ⇒ Reference
Returns a new instance of Reference.
10 11 12 13 14 15 16 17 18 |
# File 'lib/moxml/signature/model/reference.rb', line 10 def initialize(id: nil, uri: nil, type: nil, transforms: nil, digest_method: nil, digest_value: nil) @id = id @uri = uri @type = type @transforms = transforms @digest_method = digest_method @digest_value = digest_value end |
Instance Attribute Details
#digest_method ⇒ Object
Returns the value of attribute digest_method.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def digest_method @digest_method end |
#digest_value ⇒ Object
Returns the value of attribute digest_value.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def digest_value @digest_value end |
#id ⇒ Object
Returns the value of attribute id.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def id @id end |
#transforms ⇒ Object
Returns the value of attribute transforms.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def transforms @transforms end |
#type ⇒ Object
Returns the value of attribute type.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def type @type end |
#uri ⇒ Object
Returns the value of attribute uri.
7 8 9 |
# File 'lib/moxml/signature/model/reference.rb', line 7 def uri @uri end |