class Backup::Storages::Base::Object

Attributes

id[R]
storage[R]

Public Class Methods

new(storage, id) click to toggle source
# File lib/backup-agent/storages/base.rb, line 24
def initialize(storage, id)
  @storage = storage
  @id      = id
end

Public Instance Methods

last_modified() click to toggle source
# File lib/backup-agent/storages/base.rb, line 29
def last_modified
  method_not_implemented
end
to_s() click to toggle source
# File lib/backup-agent/storages/base.rb, line 33
def to_s
  id
end