Class: RubyRest::Atom::ServiceCollection
- Inherits:
-
Object
- Object
- RubyRest::Atom::ServiceCollection
- Defined in:
- lib/rubyrest/atom.rb
Instance Attribute Summary collapse
-
#accept ⇒ Object
Returns the value of attribute accept.
-
#title ⇒ Object
Returns the value of attribute title.
-
#uri ⇒ Object
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(uri, title, accept = nil) ⇒ ServiceCollection
constructor
A new instance of ServiceCollection.
Constructor Details
#initialize(uri, title, accept = nil) ⇒ ServiceCollection
Returns a new instance of ServiceCollection.
311 312 313 314 315 |
# File 'lib/rubyrest/atom.rb', line 311 def initialize( uri, title, accept = nil ) @uri = uri @title = title @accept = accept end |
Instance Attribute Details
#accept ⇒ Object
Returns the value of attribute accept.
309 310 311 |
# File 'lib/rubyrest/atom.rb', line 309 def accept @accept end |
#title ⇒ Object
Returns the value of attribute title.
309 310 311 |
# File 'lib/rubyrest/atom.rb', line 309 def title @title end |
#uri ⇒ Object
Returns the value of attribute uri.
309 310 311 |
# File 'lib/rubyrest/atom.rb', line 309 def uri @uri end |