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.
279 280 281 282 283 |
# File 'lib/rubyrest/atom.rb', line 279 def initialize( uri, title, accept = nil ) @uri = uri @title = title @accept = accept end |
Instance Attribute Details
#accept ⇒ Object
Returns the value of attribute accept.
277 278 279 |
# File 'lib/rubyrest/atom.rb', line 277 def accept @accept end |
#title ⇒ Object
Returns the value of attribute title.
277 278 279 |
# File 'lib/rubyrest/atom.rb', line 277 def title @title end |
#uri ⇒ Object
Returns the value of attribute uri.
277 278 279 |
# File 'lib/rubyrest/atom.rb', line 277 def uri @uri end |