X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fcache%2FCache.java;h=62af5943ef60947ae46b0306844d67d6768557d8;hb=3a6e2ead110ac7944f60f449b4a68d27b67fc19e;hp=6e0f1b3c97b2564505132d597a27f4f723caeb94;hpb=233b206571da3d744844bac769e04733112b9dd1;p=utils diff --git a/support/general/src/main/java/org/wamblee/cache/Cache.java b/support/general/src/main/java/org/wamblee/cache/Cache.java index 6e0f1b3c..62af5943 100644 --- a/support/general/src/main/java/org/wamblee/cache/Cache.java +++ b/support/general/src/main/java/org/wamblee/cache/Cache.java @@ -12,16 +12,17 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.cache; import java.io.Serializable; /** - * The Cache interface represents... a cache. In some circumstances - * it is more optimal to implement caching directly in the code instead of - * relying on Hibernate caching methods. This interface abstracts from the used - * cache implementation. Cache implementations must be thread-safe. + * The Cache interface represents a cache intended for + * application-level caching. In some circumstances it is more optimal to + * implement caching directly in the code instead of relying on Hibernate + * caching methods. This interface abstracts from the used cache implementation. + * Cache implementations must be thread-safe. */ public interface Cache { /** @@ -40,7 +41,7 @@ public interface Cache