| java.lang.Object org.continuent.sequoia.common.jmx.management.DumpInfo
DumpInfo | public class DumpInfo implements Serializable(Code) | | This class defines a DumpInfo which carries dump metadata information that is
mapped on a row in the dump table of the recovery log.
author: Emmanuel Cecchet version: 1.0 |
DumpInfo | public DumpInfo(String dumpName, Date dumpDate, String dumpPath, String dumpFormat, String checkpointName, String backendName, String tables)(Code) | | Creates a new DumpInfo object
Parameters: dumpName - the dump logical name Parameters: dumpDate - the date at which the dump was started Parameters: dumpPath - the path where the dump can be found Parameters: dumpFormat - the format of the dump Parameters: checkpointName - the checkpoint name associated to this dump Parameters: backendName - the name of the backend that was dumped Parameters: tables - the list of tables contained in the dump ('*' means alltables) |
getBackendName | public String getBackendName()(Code) | | Returns the backendName value.
Returns the backendName. |
getCheckpointName | public String getCheckpointName()(Code) | | Returns the checkpointName value.
Returns the checkpointName. |
getDumpDate | public Date getDumpDate()(Code) | | Returns the dumpDate value.
Returns the dumpDate. |
getDumpFormat | public String getDumpFormat()(Code) | | Returns the dumpFormat value.
Returns the dumpFormat. |
getDumpName | public String getDumpName()(Code) | | Returns the dumpName value.
Returns the dumpName. |
getDumpPath | public String getDumpPath()(Code) | | Returns the dumpPath value.
Returns the dumpPath. |
getTables | public String getTables()(Code) | | Returns the tables value.
Returns the tables. |
setBackendName | public void setBackendName(String backendName)(Code) | | Sets the backendName value.
Parameters: backendName - The backendName to set. |
setCheckpointName | public void setCheckpointName(String checkpointName)(Code) | | Sets the checkpointName value.
Parameters: checkpointName - The checkpointName to set. |
setDumpDate | public void setDumpDate(Date dumpDate)(Code) | | Sets the dumpDate value.
Parameters: dumpDate - The dumpDate to set. |
setDumpFormat | public void setDumpFormat(String dumpFormat)(Code) | | Sets the dumpFormat value.
Parameters: dumpFormat - The dumpFormat to set. |
setDumpName | public void setDumpName(String dumpName)(Code) | | Sets the dumpName value.
Parameters: dumpName - The dumpName to set. |
setDumpPath | public void setDumpPath(String dumpPath)(Code) | | Sets the dumpPath value.
Parameters: dumpPath - The dumpPath to set. |
setTables | public void setTables(String tables)(Code) | | Sets the tables value.
Parameters: tables - The tables to set. |
|
|