KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jdon > controller > cache > Cacheable


1 /**
2  *
3  * Copyright 2003-2006 the original author or authors. Licensed under the
4  * Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You
6  * may obtain a copy of the License at
7  * http://www.apache.org/licenses/LICENSE-2.0 Unless
8  * required by applicable law or agreed to in writing,
9  * software distributed under the License is distributed on
10  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11  * KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations
13  * under the License.</p>
14  *
15  */

16
17 package com.jdon.controller.cache;
18
19 /**
20  * Cacheable don't bind to CacheFactory,
21  *
22  *
23  * @author <a HREF="mailto:banqiao@jdon.com">banq</a>
24  * @version JdonFramework 2005 v1.0
25  */

26 public interface Cacheable {
27
28   public boolean isCacheable();
29
30   public void setCacheable(boolean cacheable);
31
32
33 }
34
Popular Tags