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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

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

Detailed Description

This class defines a RemoveCheckpoint

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 36 of file RemoveCheckpoint.java.


Constructor & Destructor Documentation

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

Creates a new RemoveCheckpoint.java object

Parameters:
module the command is attached to

Definition at line 52 of file RemoveCheckpoint.java.

00053   {
00054     super(module);
00055   }


Member Function Documentation

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

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

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

Definition at line 77 of file RemoveCheckpoint.java.

00078   {
00079     return ConsoleTranslate.get("admin.command.removeCheckpoint");
00080   }

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

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

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

Definition at line 69 of file RemoveCheckpoint.java.

00070   {
00071     return "removeCheckpoint";
00072   }

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

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

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

Definition at line 42 of file RemoveCheckpoint.java.

00043   {
00044     return "<checkpoint>";
00045   }

void org.objectweb.cjdbc.console.text.commands.dbadmin.RemoveCheckpoint.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 60 of file RemoveCheckpoint.java.

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

00061   {
00062     jmxClient.getVirtualDatabaseProxy(dbName, user, password).removeCheckpoint(
00063         commandText.trim());
00064   }


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