/* * 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. */ package org.apache.jetspeed.cache; import java.util.List; import java.util.Set; import org.apache.jetspeed.container.PortletEntity; import org.apache.jetspeed.container.PortletWindow; /** * {@link org.apache.jetspeed.cache.impl.PortletWindowCache} is an abstraction of a caching mechanism for use * within {@link org.apache.jetspeed.container.window.impl.PortletWindowAccessorImpl}. * * @author Scott T. Weaver * @see PortletWindowAccessorImpl * @see EhPortletWindowCache * */ public interface PortletWindowCache { /** * Gets a {@link PortletWindow} from the cache. * * @param windowId Id of the window to get from the cache. * @return {@link PortletWindow} whose id to * {@link PortletWindow#getId()} or null if no window exists that matches * windowId. */ PortletWindow getPortletWindow(String windowId); /** * Gets a {@link PortletWindow} from the cache whose {@link PortletEntity}'s ({@link PortletWindow#getPortletEntity()}) * equals portletEntityId. * * @param portletEntityId id of {@link PortletEntity} whose window want want to retrieve from cache. * @return {@link PortletWindow} whose {@link PortletEntity}'s id equals portletEntityId * or null if no windows exists in the cache that match said criteria. */ PortletWindow getPortletWindowByEntityId(String portletEntityId); /** * Stores a {@link PortletWindow} in the cache using the {@link PortletWindow#getId()#toString()} * as the key for the cache. * * @param window {@link PortletWindow} to put into the cache. */ void putPortletWindow(PortletWindow window); /** * Removes a {@link PortletWindow} from cache using the windowId * as the cache key. * * @param windowId Id of the {@link PortletWindow} we want to remove from the cache. */ void removePortletWindow(String windowId); /** * Removes a {@link PortletWindow} from the cache whose {@link PortletEntity}'s id * matches portletEntityId. * * @param portletEntityId id of the {@link PortletEntity} whose parent {@link PortletWindow} * is to be removed from the cache. */ void removePortletWindowByPortletEntityId(String portletEntityId); /** * * @return {@link List} of all the {@link PortletWindow}s in the cache. If no cache * entries exist an empty list is returned. Never returns null. */ Set getAllPortletWindows(); }