blob: a319b131d3c24e99dad511ef58c44ea4727796f2 [file] [log] [blame]
/*
* 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.myfaces.extensions.scripting.jsf.resources.deprecated;
import javax.faces.context.FacesContext;
/**
* A utility class to isolate a ResourceHandler implementation from its
* underlying implementation
*
* @author Leonardo Uribe (latest modification by $Author: lu4242 $)
* @version $Revision: 891494 $ $Date: 2009-12-16 19:42:18 -0500 (MiƩ, 16 Dic 2009) $
* @deprecated
*/
public abstract class ResourceHandlerSupport
{
/**
* Calculate the resource base path.
*
* It should extract a string like:
*
* ResourceHandler.RESOURCE_IDENTIFIER + '/' + getResourceName()
*
* For example:
*
* /javax.faces.resource/image.jpg
*
* This is used on ResourceHandler.handleResourceRequest()
*
* @param facesContext the standard faces context
* @return the resource base path from a given faces context
*
*/
public abstract String calculateResourceBasePath(FacesContext facesContext);
/**
* Return an array of resource loaders used to find resources
* using the standard. The order of ResourceLoaders define
* its precedence.
*
* @return an array of resource loaders
*/
public abstract ResourceLoader[] getResourceLoaders();
/**
* Check if the mapping used is done using extensions (.xhtml, .jsf)
* or if it is not (/faces/*)
* @return true if the mapping is done with extensions
*/
public abstract boolean isExtensionMapping();
/**
* Get the mapping used as prefix(/faces) or sufix(.jsf)
*
* @return the defined mapping for triggering the faces servlet
*/
public abstract String getMapping();
/**
* Return the time when the app started. This is useful to set the
* "Last-Modified" header in some specific cases.
*
* @return the startup time as long value
*/
public abstract long getStartupTime();
/**
* Return the time that should be set on "Expires" header in a resource.
*
* @return the max time expires value as long
*/
public abstract long getMaxTimeExpires();
}