001package org.apache.commons.jcs.auxiliary.remote.server.behavior;
002
003import java.rmi.Remote;
004import org.apache.commons.jcs.engine.behavior.ICacheObserver;
005import org.apache.commons.jcs.engine.behavior.ICacheServiceAdmin;
006import org.apache.commons.jcs.engine.behavior.ICacheServiceNonLocal;
007
008/*
009 * Licensed to the Apache Software Foundation (ASF) under one
010 * or more contributor license agreements.  See the NOTICE file
011 * distributed with this work for additional information
012 * regarding copyright ownership.  The ASF licenses this file
013 * to you under the Apache License, Version 2.0 (the
014 * "License"); you may not use this file except in compliance
015 * with the License.  You may obtain a copy of the License at
016 *
017 *   http://www.apache.org/licenses/LICENSE-2.0
018 *
019 * Unless required by applicable law or agreed to in writing,
020 * software distributed under the License is distributed on an
021 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
022 * KIND, either express or implied.  See the License for the
023 * specific language governing permissions and limitations
024 * under the License.
025 */
026
027/**
028 * Interface for managing Remote objects
029 *
030 * @author Thomas Vandahl
031 *
032 */
033public interface IRemoteCacheServer<K, V>
034    extends ICacheServiceNonLocal<K, V>, ICacheObserver, ICacheServiceAdmin, Remote
035{
036    // empty
037}