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
commit b168db6cc3c94f7aa6958fc709d5aaba1ea36218 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jan 29 09:51:53 2025 -0500 Javadoc --- .../apache/commons/jcs3/engine/CacheElementSerialized.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/CacheElementSerialized.java b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/CacheElementSerialized.java index 86e9fcde..4c35e59d 100644 --- a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/CacheElementSerialized.java +++ b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/CacheElementSerialized.java @@ -49,13 +49,13 @@ public class CacheElementSerialized<K, V> /** * Constructs a usable wrapper. - * <p> - * @param cacheNameArg - * @param keyArg - * @param serializedValueArg - * @param elementAttributesArg + * + * @param cacheName The name of the cache region. This is a namespace. + * @param key This is the cache key by which the value can be referenced. + * @param serializedValue The serialized value. + * @param elementAttributes These attributes hold information about the element and what it is allowed to do. */ - public CacheElementSerialized( final String cacheName, final K key, final byte[] serializedValue, + public CacheElementSerialized(final String cacheName, final K key, final byte[] serializedValue, final IElementAttributes elementAttributes) { this.cacheName = cacheName;