Module: WorkspaceDataService

Included in:
Metasploit::Framework::DataService
Defined in:
lib/metasploit/framework/data_service/stubs/workspace_data_service.rb

Instance Method Summary collapse

Instance Method Details

#add_workspace(workspace_name) ⇒ Object



7
8
9
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 7

def add_workspace(workspace_name)
  raise 'WorkspaceDataService#add_workspace is not implemented'
end

#default_workspaceObject



11
12
13
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 11

def default_workspace
  raise 'WorkspaceDataService#default_workspace is not implemented'
end

#delete_workspaces(opts) ⇒ Object



27
28
29
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 27

def delete_workspaces(opts)
  raise 'WorkspaceDataService#delete_workspaces is not implemented'
end

#find_workspace(workspace_name) ⇒ Object



3
4
5
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 3

def find_workspace(workspace_name)
  raise 'WorkspaceDataService#find_workspace is not implemented'
end

#update_workspace(opts) ⇒ Object



31
32
33
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 31

def update_workspace(opts)
  raise 'WorkspaceDataService#update_workspace is not implemented'
end

#workspaceObject



15
16
17
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 15

def workspace
  raise 'WorkspaceDataService#workspace is not implemented'
end

#workspace=(workspace) ⇒ Object



19
20
21
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 19

def workspace=(workspace)
  raise 'WorkspaceDataService#workspace= is not implemented'
end

#workspaces(opts) ⇒ Object



23
24
25
# File 'lib/metasploit/framework/data_service/stubs/workspace_data_service.rb', line 23

def workspaces(opts)
  raise 'WorkspaceDataService#workspaces is not implemented'
end