Source Code Cross Referenced for OdalLinkedCache.java in  » Database-ORM » ODAL » com » completex » objective » components » ocache » 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 ORM » ODAL » com.completex.objective.components.ocache 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         *  Objective Database Abstraction Layer (ODAL)
003:         *  Copyright (c) 2004, The ODAL Development Group
004:         *  All rights reserved.
005:         *  For definition of the ODAL Development Group please refer to LICENCE.txt file
006:         *
007:         *  Distributable under LGPL license.
008:         *  See terms of license at gnu.org.
009:         */package com.completex.objective.components.ocache;
010:
011:        /**
012:         * Cache representing an element of multi-index data structure. 
013:         * Putting a value into it will populate all the linked caches in following manner:
014:         * <PRE>
015:         *     key1 -> Value (belongs to this OdalLinkedCache)
016:         *     key2 -> Value (belongs to different OdalLinkedCache)
017:         *     ....
018:         *     keyN -> Value (belongs to different OdalLinkedCache)
019:         * </PRE>
020:         * 
021:         * Removing the Value by key1 from the cache will remove it from all other linked caches as well 
022:         * 
023:         * @author Gennady Krizhevsky
024:         */
025:        public interface OdalLinkedCache extends OdalNotifyingCache,
026:                OdalCacheListener, OdalKeyedCache {
027:
028:            public static final NullOdalLinkedCache NULL_ODAL_LINKED_CACHE = new NullOdalLinkedCache(
029:                    "NULL_LINKED_ODAL_CACHE");
030:
031:            /**
032:             * Core functionality on get object from cache without notifying the listeners. 
033:             *
034:             * @param key key
035:             * @return cached value
036:             */
037:            Object getNotNotify(Object key);
038:
039:            /**
040:             * Core functionality on put object to cache without notifying the listeners. 
041:             *
042:             * @param key
043:             * @param value value to cache
044:             * @return old cache value
045:             */
046:            Object putNotNotify(Object key, Object value);
047:
048:            /**
049:             * Null implementation
050:             */
051:            public static class NullOdalLinkedCache implements  OdalLinkedCache {
052:
053:                private String name;
054:
055:                public NullOdalLinkedCache(String name) {
056:                    this .name = name;
057:                }
058:
059:                public Object getNotNotify(Object key) {
060:                    return null;
061:                }
062:
063:                public Object putNotNotify(Object key, Object value) {
064:                    return null;
065:                }
066:
067:                public OdalKeyFactory getKeyFactory() {
068:                    return OdalKeyFactory.NULL_ODAL_KEY_FACTORY;
069:                }
070:
071:                public boolean isMarkCacheCollectionElements() {
072:                    return true;
073:                }
074:
075:                public boolean isDisabled() {
076:                    return false;
077:                }
078:
079:                public void put(Object value) {
080:                }
081:
082:                public void addListener(OdalCacheListener listener) {
083:                }
084:
085:                public void removeListener(OdalCacheListener listener) {
086:                }
087:
088:                public void removeAllListeners() {
089:                }
090:
091:                public Object get(Object key) {
092:                    return null;
093:                }
094:
095:                public Object put(Object key, Object object) {
096:                    return null;
097:                }
098:
099:                public Object remove(Object key) {
100:                    return null;
101:                }
102:
103:                public String getName() {
104:                    return name;
105:                }
106:
107:                public void clear() {
108:                }
109:
110:                public void beforeGet(Object key) {
111:                }
112:
113:                public void afterGet(Object key, Object value) {
114:                }
115:
116:                public void beforePut(Object key, Object value) {
117:                }
118:
119:                public void afterPut(Object key, Object value) {
120:                }
121:
122:                public void beforeRemove(Object key) {
123:                }
124:
125:                public void afterRemove(Object key, Object value) {
126:                }
127:
128:                public void beforeClear() {
129:                }
130:
131:                public void afterClear() {
132:                }
133:            }
134:
135:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.