Source Code Cross Referenced for DumpInfo.java in  » Database-JDBC-Connection-Pool » sequoia-2.10.9 » org » continuent » sequoia » common » jmx » management » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database JDBC Connection Pool » sequoia 2.10.9 » org.continuent.sequoia.common.jmx.management 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Sequoia: Database clustering technology.
003:         * Copyright (C) 2005 Emic Networks.
004:         * Contact: sequoia@continuent.org
005:         * 
006:         * Licensed under the Apache License, Version 2.0 (the "License");
007:         * you may not use this file except in compliance with the License.
008:         * You may obtain a copy of the License at
009:         * 
010:         * http://www.apache.org/licenses/LICENSE-2.0
011:         * 
012:         * Unless required by applicable law or agreed to in writing, software
013:         * distributed under the License is distributed on an "AS IS" BASIS,
014:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015:         * See the License for the specific language governing permissions and
016:         * limitations under the License. 
017:         *
018:         * Initial developer(s): Emmanuel Cecchet.
019:         * Contributor(s): ______________________.
020:         */package org.continuent.sequoia.common.jmx.management;
021:
022:        import java.io.Serializable;
023:        import java.util.Date;
024:
025:        /**
026:         * This class defines a DumpInfo which carries dump metadata information that is
027:         * mapped on a row in the dump table of the recovery log.
028:         * 
029:         * @author <a href="mailto:emmanuel.cecchet@emicnetworks.com">Emmanuel Cecchet</a>
030:         * @version 1.0
031:         */
032:        public class DumpInfo implements  Serializable {
033:            private static final long serialVersionUID = -5627995243952765938L;
034:
035:            private String dumpName;
036:            private Date dumpDate;
037:            private String dumpPath;
038:            private String dumpFormat;
039:            private String checkpointName;
040:            private String backendName;
041:            private String tables;
042:
043:            /**
044:             * Creates a new <code>DumpInfo</code> object
045:             * 
046:             * @param dumpName the dump logical name
047:             * @param dumpDate the date at which the dump was started
048:             * @param dumpPath the path where the dump can be found
049:             * @param dumpFormat the format of the dump
050:             * @param checkpointName the checkpoint name associated to this dump
051:             * @param backendName the name of the backend that was dumped
052:             * @param tables the list of tables contained in the dump ('*' means all
053:             *          tables)
054:             */
055:            public DumpInfo(String dumpName, Date dumpDate, String dumpPath,
056:                    String dumpFormat, String checkpointName,
057:                    String backendName, String tables) {
058:                this .dumpName = dumpName;
059:                this .dumpDate = dumpDate;
060:                this .dumpPath = dumpPath;
061:                this .dumpFormat = dumpFormat;
062:                this .checkpointName = checkpointName;
063:                this .backendName = backendName;
064:                this .tables = tables;
065:            }
066:
067:            /**
068:             * Returns the backendName value.
069:             * 
070:             * @return Returns the backendName.
071:             */
072:            public String getBackendName() {
073:                return backendName;
074:            }
075:
076:            /**
077:             * Sets the backendName value.
078:             * 
079:             * @param backendName The backendName to set.
080:             */
081:            public void setBackendName(String backendName) {
082:                this .backendName = backendName;
083:            }
084:
085:            /**
086:             * Returns the checkpointName value.
087:             * 
088:             * @return Returns the checkpointName.
089:             */
090:            public String getCheckpointName() {
091:                return checkpointName;
092:            }
093:
094:            /**
095:             * Sets the checkpointName value.
096:             * 
097:             * @param checkpointName The checkpointName to set.
098:             */
099:            public void setCheckpointName(String checkpointName) {
100:                this .checkpointName = checkpointName;
101:            }
102:
103:            /**
104:             * Returns the dumpDate value.
105:             * 
106:             * @return Returns the dumpDate.
107:             */
108:            public Date getDumpDate() {
109:                return dumpDate;
110:            }
111:
112:            /**
113:             * Sets the dumpDate value.
114:             * 
115:             * @param dumpDate The dumpDate to set.
116:             */
117:            public void setDumpDate(Date dumpDate) {
118:                this .dumpDate = dumpDate;
119:            }
120:
121:            /**
122:             * Returns the dumpName value.
123:             * 
124:             * @return Returns the dumpName.
125:             */
126:            public String getDumpName() {
127:                return dumpName;
128:            }
129:
130:            /**
131:             * Sets the dumpName value.
132:             * 
133:             * @param dumpName The dumpName to set.
134:             */
135:            public void setDumpName(String dumpName) {
136:                this .dumpName = dumpName;
137:            }
138:
139:            /**
140:             * Returns the dumpPath value.
141:             * 
142:             * @return Returns the dumpPath.
143:             */
144:            public String getDumpPath() {
145:                return dumpPath;
146:            }
147:
148:            /**
149:             * Sets the dumpPath value.
150:             * 
151:             * @param dumpPath The dumpPath to set.
152:             */
153:            public void setDumpPath(String dumpPath) {
154:                this .dumpPath = dumpPath;
155:            }
156:
157:            /**
158:             * Returns the dumpFormat value.
159:             * 
160:             * @return Returns the dumpFormat.
161:             */
162:            public String getDumpFormat() {
163:                return dumpFormat;
164:            }
165:
166:            /**
167:             * Sets the dumpFormat value.
168:             * 
169:             * @param dumpFormat The dumpFormat to set.
170:             */
171:            public void setDumpFormat(String dumpFormat) {
172:                this .dumpFormat = dumpFormat;
173:            }
174:
175:            /**
176:             * Returns the tables value.
177:             * 
178:             * @return Returns the tables.
179:             */
180:            public String getTables() {
181:                return tables;
182:            }
183:
184:            /**
185:             * Sets the tables value.
186:             * 
187:             * @param tables The tables to set.
188:             */
189:            public void setTables(String tables) {
190:                this.tables = tables;
191:            }
192:
193:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.