blob: 9a612e885960f1b6abed1c670640cf346ab42b5c [file] [log] [blame]
// Copyright 2004 The Apache Software Foundation
//
// Licensed 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.tapestry.engine;
import java.io.IOException;
import javax.servlet.ServletException;
import org.apache.tapestry.IEngine;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.request.ResponseOutputStream;
/**
* Additional methods implemented by the engine that are
* exposed to {@link IEngineService engine services}.
*
* @author Howard Lewis Ship
* @version $Id$
* @since 1.0.9
*
*/
public interface IEngineServiceView extends IEngine
{
/**
* Invoked by a service to force the page selected by the {@link IRequestCycle}
* to be renderred. This takes care of a number of bookkeeping issues, such
* as committing changes in page recorders.
*
**/
public void renderResponse(IRequestCycle cycle, ResponseOutputStream output)
throws ServletException, IOException;
/**
* Invoked to restart the application from start; this most frequently follows
* some kind of catastrophic failure. This will invalidate any {@link javax.servlet.http.HttpSession}
* and force a redirect to the application servlet (i.e., invoking the home service
* in a subsequent request cycle).
*
**/
public void restart(IRequestCycle cycle) throws IOException;
/**
* Invoked (typically by the reset service) to clear all cached data known
* to the engine. This includes
* pages, templates, helper beans, specifications,
* localized strings, etc., and
* is used during debugging.
*
**/
public void clearCachedData();
/**
* Writes a detailed report of the exception to <code>System.err</code>.
* This is invoked by services that can't write an HTML description
* of the error because they don't provide text/html content (such as
* an asset that creates an image).
*
* @since 1.0.10
*/
public void reportException(String reportTitle, Throwable ex);
}