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.



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

#acceptObject

Returns the value of attribute accept.



309
310
311
# File 'lib/rubyrest/atom.rb', line 309

def accept
  @accept
end

#titleObject

Returns the value of attribute title.



309
310
311
# File 'lib/rubyrest/atom.rb', line 309

def title
  @title
end

#uriObject

Returns the value of attribute uri.



309
310
311
# File 'lib/rubyrest/atom.rb', line 309

def uri
  @uri
end