Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile Class Reference

Inheritance diagram for org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile:

Collaboration graph
[legend]
List of all members.

Public Member Functions

String getCommandParameters ()
 RemoveDumpFile (VirtualDatabaseAdmin module)
void parse (String commandText) throws Exception
String getCommandName ()
String getCommandDescription ()

Detailed Description

This class defines the command used to remove a dump file of a given virtual database.

Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 39 of file RemoveDumpFile.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile.RemoveDumpFile VirtualDatabaseAdmin  module  ) 
 

Creates a new RemoveCheckpoint.java object

Parameters:
module the command is attached to

Definition at line 55 of file RemoveDumpFile.java.

00056   {
00057     super(module);
00058   }


Member Function Documentation

String org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile.getCommandDescription  )  [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.getCommandDescription()

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 80 of file RemoveDumpFile.java.

00081   {
00082     return ConsoleTranslate.get("admin.command.removeDumpFile");
00083   }

String org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile.getCommandName  )  [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.getCommandName()

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 72 of file RemoveDumpFile.java.

00073   {
00074     return "removeDumpFile";
00075   }

String org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile.getCommandParameters  ) 
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.getCommandParameters()

Reimplemented from org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 45 of file RemoveDumpFile.java.

00046   {
00047     return "<dumpName>";
00048   }

void org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveDumpFile.parse String  commandText  )  throws Exception [virtual]
 

See also:
org.objectweb.cjdbc.console.text.commands.ConsoleCommand.parse(java.lang.String)

Implements org.objectweb.cjdbc.console.text.commands.ConsoleCommand.

Definition at line 63 of file RemoveDumpFile.java.

References org.objectweb.cjdbc.console.jmx.RmiJmxClient.getVirtualDatabaseProxy(), and org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.removeDumpFile().

00064   {
00065     jmxClient.getVirtualDatabaseProxy(dbName, user, password).removeDumpFile(
00066         new File(commandText.trim()));
00067   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:02:58 2005 for C-JDBC by  doxygen 1.3.9.1