This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git


The following commit(s) were added to refs/heads/master by this push:
     new b0ed3b2d Javadoc
b0ed3b2d is described below

commit b0ed3b2d6479c4aa585aab9110d0e6456a4e458c
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Mar 23 11:31:59 2026 -0700

    Javadoc
---
 .../main/java/org/apache/commons/jcs/yajcache/core/CacheManager.java    | 2 +-
 .../src/main/java/org/apache/commons/jcs/yajcache/core/CacheType.java   | 2 +-
 .../java/org/apache/commons/jcs/yajcache/file/CacheFileContentType.java | 2 +-
 .../main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java    | 2 +-
 .../main/java/org/apache/commons/jcs/yajcache/file/CacheFileUtils.java  | 2 +-
 .../org/apache/commons/jcs/yajcache/lang/annotation/CopyRightType.java  | 2 +-
 .../apache/commons/jcs/yajcache/lang/annotation/ThreadSafetyType.java   | 2 +-
 .../main/java/org/apache/commons/jcs/yajcache/util/CollectionUtils.java | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheManager.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheManager.java
index db3d788b..a088754d 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheManager.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheManager.java
@@ -32,7 +32,7 @@ import java.util.concurrent.atomic.AtomicInteger;
 import java.util.concurrent.locks.Lock;
 
 /**
- * Cache Manager for getting, creating and removing named caches.
+ * Enumerates cache managers for getting, creating and removing named caches.
  */
 // @CopyRightApache
 // http://www.netbeans.org/issues/show_bug.cgi?id=53704
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheType.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheType.java
index a5da0d08..7ee6dc32 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheType.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/core/CacheType.java
@@ -24,7 +24,7 @@ import org.apache.commons.jcs.yajcache.soft.SoftRefCache;
 import org.apache.commons.jcs.yajcache.soft.SoftRefFileCache;
 
 /**
- * Cache Type.
+ * Enumerates cache types.
  */
 // @CopyRightApache
 // http://www.netbeans.org/issues/show_bug.cgi?id=53704
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileContentType.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileContentType.java
index 8983aa62..4f7c8aad 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileContentType.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileContentType.java
@@ -25,7 +25,7 @@ import org.apache.commons.lang3.SerializationUtils;
 import java.io.Serializable;
 
 /**
- * Cache File Content Type.  A cache file represents the file persistence
+ * Enumerates cache file content types.  A cache file represents the file 
persistence
  * format of a cache item.
  * Currently the content of a cache item can be persisted into an array of
  * bytes via either Java Serialization, or the XMLEncoder.
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
index 31de76a6..c5fffe05 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
@@ -30,7 +30,7 @@ import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
 /**
- * Cache File Data Access Object.
+ * Enumerates cache File data access object.
  */
 // @CopyRightApache
 // http://www.netbeans.org/issues/show_bug.cgi?id=53704
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileUtils.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileUtils.java
index 6e07a0f8..3659cef3 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileUtils.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileUtils.java
@@ -25,7 +25,7 @@ import org.apache.commons.jcs.yajcache.lang.annotation.*;
 import java.io.File;
 
 /**
- * Cache File Utilities.
+ * Enumerates cache file utilities.
  */
 // @CopyRightApache
 // http://www.netbeans.org/issues/show_bug.cgi?id=53704
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightType.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightType.java
index 0c5e776e..abaa6793 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightType.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightType.java
@@ -20,7 +20,7 @@ package org.apache.commons.jcs.yajcache.lang.annotation;
  */
 
 /**
- * Copyright Types.
+ * Enumerates copyright types.
  */
 // @CopyRightApache
 // http://www.netbeans.org/issues/show_bug.cgi?id=53704
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/ThreadSafetyType.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/ThreadSafetyType.java
index 2bb7dce2..448cff3d 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/ThreadSafetyType.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/ThreadSafetyType.java
@@ -20,7 +20,7 @@ package org.apache.commons.jcs.yajcache.lang.annotation;
  */
 
 /**
- * Thread Safety Types.
+ * Enumerates thread safety types.
  *
  * http://www-106.ibm.com/developerworks/java/library/j-jtp09263.html
  */
diff --git 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/util/CollectionUtils.java
 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/util/CollectionUtils.java
index 63fecf8d..dbad7545 100644
--- 
a/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/util/CollectionUtils.java
+++ 
b/commons-jcs4-sandbox/commons-jcs4-yajcache/src/main/java/org/apache/commons/jcs/yajcache/util/CollectionUtils.java
@@ -24,7 +24,7 @@ import org.apache.commons.jcs.yajcache.lang.annotation.*;
 import java.util.concurrent.ConcurrentHashMap;
 
 /**
- * Collection related Utilities.
+ * Enumerates collection related utilities.
  */
 @CopyRightApache
 public enum CollectionUtils {

Reply via email to