Source Code Cross Referenced for IJdbcSecurityPlugin.java in  » J2EE » Jaffa » org » jaffa » persistence » engines » jdbcengine » security » 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 » J2EE » Jaffa » org.jaffa.persistence.engines.jdbcengine.security 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * ====================================================================
03:         * JAFFA - Java Application Framework For All
04:         *
05:         * Copyright (C) 2002 JAFFA Development Group
06:         *
07:         *     This library is free software; you can redistribute it and/or
08:         *     modify it under the terms of the GNU Lesser General Public
09:         *     License as published by the Free Software Foundation; either
10:         *     version 2.1 of the License, or (at your option) any later version.
11:         *
12:         *     This library is distributed in the hope that it will be useful,
13:         *     but WITHOUT ANY WARRANTY; without even the implied warranty of
14:         *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15:         *     Lesser General Public License for more details.
16:         *
17:         *     You should have received a copy of the GNU Lesser General Public
18:         *     License along with this library; if not, write to the Free Software
19:         *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20:         *
21:         * Redistribution and use of this software and associated documentation ("Software"),
22:         * with or without modification, are permitted provided that the following conditions are met:
23:         * 1.	Redistributions of source code must retain copyright statements and notices.
24:         *         Redistributions must also contain a copy of this document.
25:         * 2.	Redistributions in binary form must reproduce the above copyright notice,
26:         * 	this list of conditions and the following disclaimer in the documentation
27:         * 	and/or other materials provided with the distribution.
28:         * 3.	The name "JAFFA" must not be used to endorse or promote products derived from
29:         * 	this Software without prior written permission. For written permission,
30:         * 	please contact mail to: jaffagroup@yahoo.com.
31:         * 4.	Products derived from this Software may not be called "JAFFA" nor may "JAFFA"
32:         * 	appear in their names without prior written permission.
33:         * 5.	Due credit should be given to the JAFFA Project (http://jaffa.sourceforge.net).
34:         *
35:         * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
36:         * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37:         * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38:         * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39:         * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40:         * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41:         * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42:         * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43:         * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44:         * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45:         * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46:         * SUCH DAMAGE.
47:         * ====================================================================
48:         */
49:
50:        package org.jaffa.persistence.engines.jdbcengine.security;
51:
52:        import java.sql.Connection;
53:        import java.sql.SQLException;
54:
55:        /**
56:         * The JDBC Engine will invoke the suitable trigger points of a plugin class that implements this interface.
57:         * The plugin class will have to be specified in framework.properties
58:         * The implementing class should have a no-argument constructor.
59:         * @author  GautamJ
60:         */
61:        public interface IJdbcSecurityPlugin {
62:
63:            /** This method will be invoked after a new Connection object is obtained from a connection pool.
64:             * An implementing class can add all the logic pertaining to user security in this method.
65:             * @param connection The new Connection object from the pool.
66:             * @throws SQLException if any error occurs.
67:             */
68:            public void newConnection(Connection connection)
69:                    throws SQLException;
70:
71:            /** This method will be invoked before returning a Connection back to the connection pool.
72:             * An implementing class will undo the changes made by the newConnection() method.
73:             * @param connection The Connection object to be returned back to the pool.
74:             * @throws SQLException if any error occurs.
75:             */
76:            public void freeConnection(Connection connection)
77:                    throws SQLException;
78:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.