1 package org.apache.commons.betwixt.registry;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 import org.apache.commons.betwixt.XMLBeanInfo;
21
22 /*** This plug-in registry does not cache at all.
23 * In effect, this turns caching off.
24 *
25 * @author <a href="mailto:rdonkin@apache.org">Robert Burrell Donkin</a>
26 * @version $Id: NoCacheRegistry.java 438373 2006-08-30 05:17:21Z bayard $
27 */
28 public final class NoCacheRegistry implements XMLBeanInfoRegistry {
29
30 /*** Always return null.
31 *
32 * @param forThisClass this parameter is ignored
33 * @return <code>null</code>
34 */
35 public XMLBeanInfo get(Class forThisClass) {
36 return null;
37 }
38
39 /***
40 * Do nothing (this implementation does not cache)
41 *
42 * @param forThisClass the class is ignored
43 * @param beanInfo the <code>XMLBeanInfo</code> is ignored
44 */
45 public void put(Class forThisClass, XMLBeanInfo beanInfo) {}
46
47 /***
48 * Nothing cached so nothing to flush
49 *
50 * @see org.apache.commons.betwixt.registry.XMLBeanInfoRegistry#flush()
51 *
52 */
53 public void flush() {
54 }
55
56 }