Author: tv Date: Tue Jan 6 18:56:22 2015 New Revision: 1649906 URL: http://svn.apache.org/r1649906 Log: Attempt to resolve ClassCastExceptions when working with remote objects
Added: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java (with props) Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServer.java Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServer.java URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServer.java?rev=1649906&r1=1649905&r2=1649906&view=diff ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServer.java (original) +++ commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServer.java Tue Jan 6 18:56:22 2015 @@ -19,9 +19,22 @@ package org.apache.commons.jcs.auxiliary * under the License. */ +import java.io.IOException; +import java.io.Serializable; +import java.rmi.RemoteException; +import java.rmi.registry.Registry; +import java.rmi.server.RMISocketFactory; +import java.rmi.server.UnicastRemoteObject; +import java.rmi.server.Unreferenced; +import java.util.Collections; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; + import org.apache.commons.jcs.access.exception.CacheException; import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheListener; -import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheObserver; +import org.apache.commons.jcs.auxiliary.remote.server.behavior.IRemoteCacheServer; import org.apache.commons.jcs.auxiliary.remote.server.behavior.IRemoteCacheServerAttributes; import org.apache.commons.jcs.auxiliary.remote.server.behavior.RemoteType; import org.apache.commons.jcs.engine.CacheEventQueueFactory; @@ -29,8 +42,6 @@ import org.apache.commons.jcs.engine.Cac import org.apache.commons.jcs.engine.behavior.ICacheElement; import org.apache.commons.jcs.engine.behavior.ICacheEventQueue; import org.apache.commons.jcs.engine.behavior.ICacheListener; -import org.apache.commons.jcs.engine.behavior.ICacheServiceAdmin; -import org.apache.commons.jcs.engine.behavior.ICacheServiceNonLocal; import org.apache.commons.jcs.engine.control.CompositeCache; import org.apache.commons.jcs.engine.control.CompositeCacheManager; import org.apache.commons.jcs.engine.logging.CacheEvent; @@ -39,20 +50,6 @@ import org.apache.commons.jcs.engine.log import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import java.io.IOException; -import java.io.Serializable; -import java.rmi.Remote; -import java.rmi.RemoteException; -import java.rmi.registry.Registry; -import java.rmi.server.RMISocketFactory; -import java.rmi.server.UnicastRemoteObject; -import java.rmi.server.Unreferenced; -import java.util.Collections; -import java.util.Iterator; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - /** * This class provides remote cache services. The remote cache server propagates events from local * caches to other local caches. It can also store cached data, making it available to new clients. @@ -70,7 +67,7 @@ import java.util.concurrent.ConcurrentHa */ public class RemoteCacheServer<K, V> extends UnicastRemoteObject - implements ICacheServiceNonLocal<K, V>, IRemoteCacheObserver, ICacheServiceAdmin, Remote, Unreferenced + implements IRemoteCacheServer<K, V>, Unreferenced { /** For serialization. Don't change. */ private static final long serialVersionUID = -8072345435941473116L; Added: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java?rev=1649906&view=auto ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java (added) +++ commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java Tue Jan 6 18:56:22 2015 @@ -0,0 +1,37 @@ +package org.apache.commons.jcs.auxiliary.remote.server.behavior; + +import java.rmi.Remote; +import org.apache.commons.jcs.engine.behavior.ICacheObserver; +import org.apache.commons.jcs.engine.behavior.ICacheServiceAdmin; +import org.apache.commons.jcs.engine.behavior.ICacheServiceNonLocal; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, 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. + */ + +/** + * Interface for managing Remote objects + * + * @author Thomas Vandahl + * + */ +public interface IRemoteCacheServer<K, V> + extends ICacheServiceNonLocal<K, V>, ICacheObserver, ICacheServiceAdmin, Remote +{ + // empty +} Propchange: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/auxiliary/remote/server/behavior/IRemoteCacheServer.java ------------------------------------------------------------------------------ svn:mime-type = text/plain