Class: RubyRest::Atom::ServiceCollection

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyrest/atom.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#acceptObject

Returns the value of attribute accept.



277
278
279
# File 'lib/rubyrest/atom.rb', line 277

def accept
  @accept
end

#titleObject

Returns the value of attribute title.



277
278
279
# File 'lib/rubyrest/atom.rb', line 277

def title
  @title
end

#uriObject

Returns the value of attribute uri.



277
278
279
# File 'lib/rubyrest/atom.rb', line 277

def uri
  @uri
end