This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit 920554b9b02eea21abe56fd564e1a022fef3be4c Author: Thomas Vandahl <[email protected]> AuthorDate: Mon Feb 16 14:36:30 2026 +0100 Fix JCS-243 ICacheServiceAdmin not extending Remote --- .../org/apache/commons/jcs4/engine/behavior/ICacheServiceAdmin.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/ICacheServiceAdmin.java b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/ICacheServiceAdmin.java index 02d61b81..4cc85723 100644 --- a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/ICacheServiceAdmin.java +++ b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/ICacheServiceAdmin.java @@ -20,13 +20,14 @@ package org.apache.commons.jcs4.engine.behavior; */ import java.io.IOException; +import java.rmi.Remote; import org.apache.commons.jcs4.engine.stats.behavior.ICacheStats; /** * Description of the Interface */ -public interface ICacheServiceAdmin +public interface ICacheServiceAdmin extends Remote { /** * Gets the statistics of the ICacheServiceAdmin object
