Source Code Cross Referenced for StandaloneConnectionFactoryConfiguration.java in  » Inversion-of-Control » carbon » org » sape » carbon » services » sql » connection » 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 » Inversion of Control » carbon » org.sape.carbon.services.sql.connection 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * The contents of this file are subject to the Sapient Public License
003:         * Version 1.0 (the "License"); you may not use this file except in compliance
004:         * with the License. You may obtain a copy of the License at
005:         * http://carbon.sf.net/License.html.
006:         *
007:         * Software distributed under the License is distributed on an "AS IS" basis,
008:         * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
009:         * the specific language governing rights and limitations under the License.
010:         *
011:         * The Original Code is The Carbon Component Framework.
012:         *
013:         * The Initial Developer of the Original Code is Sapient Corporation
014:         *
015:         * Copyright (C) 2003 Sapient Corporation. All Rights Reserved.
016:         */
017:
018:        package org.sape.carbon.services.sql.connection;
019:
020:        import java.util.Map;
021:
022:        import org.sape.carbon.core.component.ComponentConfiguration;
023:
024:        /**
025:         * Configuration Interface for StandaloneConnectionFactory
026:         *
027:         * Copyright 2002 Sapient
028:         * @since carbon 1.0
029:         * @author Chris Herron, March 2002
030:         * @version $Revision: 1.8 $($Author: araman $ / $Date: 2003/07/29 08:01:30 $)
031:         */
032:        public interface StandaloneConnectionFactoryConfiguration extends
033:                ComponentConfiguration {
034:
035:            /**
036:             * Gets the class of the driver to create the connection with.
037:             *
038:             * @return Class of driver for connection.
039:             */
040:            Class getDriverClass();
041:
042:            /**
043:             * Sets the class of the driver to create the connection with.
044:             *
045:             * @param driverClass Class of driver for connection.
046:             */
047:            void setDriverClass(Class driverClass);
048:
049:            /**
050:             * Gets the DbUrl specifiying the database connection.
051:             *
052:             * @return the DbUrl specifiying the database connection
053:             */
054:            String getDbUrl();
055:
056:            /**
057:             * Sets the DbUrl specifiying the database connection.
058:             *
059:             * @param dbUrl the DbUrl specifiying the database connection
060:             */
061:            void setDbUrl(String dbUrl);
062:
063:            /**
064:             * Gets the DbUserId specifiying the database connection.
065:             *
066:             * @return the DbUserId specifiying the database connection
067:             */
068:            String getDbUserId();
069:
070:            /**
071:             * Sets the DbUserId specifiying the database connection.
072:             *
073:             * @param dbUserId the DbUserId specifiying the database connection
074:             */
075:            void setDbUserId(String dbUserId);
076:
077:            /**
078:             * Gets the DbPassword specifiying the database connection.
079:             *
080:             * @return the DbPassword specifiying the database connection
081:             */
082:            String getDbPassword();
083:
084:            /**
085:             * Sets the DbPassword specifiying the database connection.
086:             *
087:             * @param dbPassword the dbPassword specifiying the database connection
088:             */
089:            void setDbPassword(String dbPassword);
090:
091:            /**
092:             * Retrieves additional configuration properties set for the connection
093:             */
094:            Map getConnectionProperties();
095:
096:            /**
097:             * Method to retrieve a specific configuration value property set for the connection
098:             */
099:            String getConnectionProperties(String key);
100:
101:            /**
102:             * Sets additional configuration values for the connection
103:             */
104:            void setConnectionProperties(Map connectionProperties);
105:
106:            /**
107:             * Sets a specific configuration value for the connection 
108:             */
109:            void setConnectionProperties(String key, String value);
110:
111:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.