Source Code Cross Referenced for JalistoProperties.java in  » Database-DBMS » jalisto » org » objectweb » jalisto » se » api » 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 DBMS » jalisto » org.objectweb.jalisto.se.api 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Jalisto - JAva LIght STOrage
003:         * Copyright (C) 2000-2005 Xcalia http://www.xcalia.com
004:         * 
005:         * This library is free software; you can redistribute it and/or
006:         * modify it under the terms of the GNU Lesser General Public
007:         * License as published by the Free Software Foundation; either
008:         * version 2.1 of the License, or (at your option) any later version.
009:         * 
010:         * This library is distributed in the hope that it will be useful,
011:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
012:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
013:         * Lesser General Public License for more details.
014:         * 
015:         * You should have received a copy of the GNU Lesser General Public
016:         * License along with this library; if not, write to the Free Software
017:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
018:         * 
019:         * Xcalia
020:         * 71, rue Desnouettes
021:         * 75014 Paris - France
022:         * http://www.xcalia.com
023:         */
024:        package org.objectweb.jalisto.se.api;
025:
026:        import java.util.Collection;
027:        import java.io.Serializable;
028:
029:        public interface JalistoProperties extends Serializable {
030:            String getName();
031:
032:            String getProperty(String key);
033:
034:            Collection getTraceModuleNames();
035:
036:            String getPropertiesPath();
037:
038:            int getInitialSize();
039:
040:            int getOidPageSize();
041:
042:            int getOidTableSize();
043:
044:            int getAdditionalSpace();
045:
046:            int getObjectCacheSize();
047:
048:            int getPageCacheSize();
049:
050:            int getMBeanJmxPort();
051:
052:            double getCacheClearPourcent();
053:
054:            short getClassPageSize();
055:
056:            short getSystemPageSize();
057:
058:            String getImplementation();
059:
060:            boolean isMonoImplementation();
061:
062:            boolean isReadOnlyImplementation();
063:
064:            boolean isMultiImplementation();
065:
066:            boolean isKeepingInMemory();
067:
068:            boolean isCleanLog();
069:
070:            boolean allowsSpecialFunctionnalities();
071:
072:            short getInstancePageSize();
073:
074:            int getKeyLength();
075:
076:            String getCommunicationFactoryClassName();
077:
078:            String getLogFileName();
079:
080:            boolean isTraceEnable();
081:
082:            JalistoProperties getClone();
083:
084:            String getDbFileFullName();
085:
086:            String getOidDbFilePath();
087:
088:            String getSystemDbFilePath();
089:
090:            int getInstanceDbFileNumber();
091:
092:            String getInstanceDbFilePathAt(int index);
093:
094:            Collection getKeys();
095:
096:            void compareProperties(JalistoProperties oldProps);
097:
098:            void checkProperty(JalistoProperties oldProps, String property);
099:
100:            String[] getPathes();
101:
102:            void setProperty(String key, String property);
103:
104:            String getServerPropertiesPath();
105:
106:            String getHost();
107:
108:            int getPort();
109:
110:            String getInternalFactoryClass();
111:
112:            public final static int SYSTEM_INDEX = 0;
113:            public final static int OID_INDEX = 1;
114:            public final static int INDEXES_INDEX = 1;
115:
116:            public final static String MONO_IMPLEMENTATION = "mono";
117:            public final static String READONLY_IMPLEMENTATION = "readonly";
118:            public final static String MULTI_IMPLEMENTATION = "multi";
119:            public final static String REMOTE_IMPLEMENTATION = "remote";
120:
121:            public final static String NAME_KEY = "name";
122:            public final static String IMPLEMENTATION_KEY = "userMode";
123:            public final static String DATABASE_FILES_PATHS_KEY = "dbFilesPaths";
124:            public final static String DATABASE_INITIAL_SIZE_KEY = "dbInitialSize";
125:            public final static String CACHE_IMPLEMENTATION_KEY = "cacheClass";
126:            public final static String OBJECT_CACHE_SIZE_KEY = "objectCacheSize";
127:            public final static String PAGE_CACHE_SIZE_KEY = "pageCacheSize";
128:            public final static String CACHE_CLEAR_POURCENT_KEY = "cacheClearPourcent";
129:            public final static String OIDTABLE_SIZE_KEY = "oidTableSize";
130:            public final static String OBJECT_INST_PAGE_SIZE_KEY = "instancePageSize";
131:            public final static String OBJECT_SYST_PAGE_SIZE_KEY = "systemPageSize";
132:            public final static String OBJECT_CLASS_PAGE_SIZE_KEY = "classPageSize";
133:            public final static String OBJECT_OID_PAGE_SIZE_KEY = "oidPageSize";
134:            public final static String CONCURRENCY_MODE_KEY = "concurrencyMode";
135:            public final static String TIME_OUT_KEY = "timeOut"; // not documented
136:            public final static String ADD_SPACE_KEY = "addSpace"; // not documented
137:            public final static String INTERNAL_KEY_MAX_SIZE_KEY = "internalKeyMaxSize"; // not documented
138:            public final static String ALLOWS_SPECIAL_FUNCTIONNALITIES_KEY = "allowsSpecialFunctionnalities"; // not documented
139:            public final static String PHYSICAL_ACCESS_CLASS_KEY = "physicalClass";
140:            public final static String INTERNAL_FACTORY_CLASS_KEY = "internalFactoryClass"; // not documented
141:            public final static String COMMUNICATION_FACTORY_CLASS_KEY = "communicationFactoryClass";
142:            public final static String QUERY_MANAGER_CLASS_KEY = "queryManagerClass";
143:            public final static String MBEAN_SERVER_CLASS_KEY = "jalistoMBeanServerClass"; // not documented
144:            public final static String MBEAN_JMX_SERVER_PORT_KEY = "MBeanHtmlServerPort"; // not documented
145:            public final static String KEEP_IN_MEMORY_KEY = "keepInMemory";
146:            public final static String CLEAN_LOG_KEY = "cleanLog"; // not documented
147:            public final static String LOG_FILE_KEY = "logFile";
148:            public final static String TRACE_KEY = "trace";
149:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.