blob: a6214064dd62d62efe67a606b1e0c52edc3f1101 [file] [log] [blame]
/*
* $Id$
*
* 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.tiles;
import java.util.Map;
import java.io.IOException;
import java.io.Writer;
/**
* An encapsulation of the tiles framework. This interface is
* used to expose tiles features to frameworks which leverage
* it as a plugin. It can alternately be used by web applications
* which would like a programmatic interface.
*
* @since 2.0
* @version $Rev$ $Date$
*/
public interface TilesContainer {
/**
* Initialize the container with the given
* configuration.
*
* @param initParameters application context
* @throws TilesException when an initialization error occurs
*/
void init(Map<String, String> initParameters) throws TilesException;
/**
* Retrieve the containers context.
*
* @return current application context
*/
TilesApplicationContext getApplicationContext();
/**
* Retrive the attribute context of the current request.
* @param requestItems the current request objects.
* @return map of the attributes in the current attribute context.
*/
AttributeContext getAttributeContext(Object... requestItems);
/**
* Starts a new context, where attribute values are stored independently
* from others.<br>
* When the use of the contexts is finished, call
* {@link TilesContainer#endContext(Object...)}
*
* @param requestItems the current request objects.
* @return The newly created context.
*/
AttributeContext startContext(Object... requestItems);
/**
* Ends a context, where attribute values are stored independently
* from others.<br>
* It must be called after a
* {@link TilesContainer#startContext(Object...)} call.
*
* @param requestItems the current request objects.
*/
void endContext(Object... requestItems);
/**
* @param definition the requested definition
* @param requestItems the current request objects.
* @throws TilesException is processing fails.
*/
void prepare(String definition, Object... requestItems) throws TilesException;
/**
* Render the given tiles request
* @param definition the current definition
* @param requestItems the current request objects.
*
* @throws TilesException is processing fails.
*/
void render(String definition, Object... requestItems) throws TilesException;
/**
* Render the given Attribute.
*
* @param attribute The attribute to render.
* @param writer The writer to use when rendering an attribute of "string"
* type.
* @param requestItems the current request objects.
* @throws TilesException If something goes wrong during accessing Tiles
* elements.
* @throws IOException If something goes wrong during writing to the output.
*/
void render(Attribute attribute, Writer writer, Object... requestItems)
throws TilesException, IOException;
/**
* Determine whether or not the definition exists.
* @param definition the name of the definition.
* @param requestItems the current request objects.
*
* @return true if the definition is found.
*/
boolean isValidDefinition(String definition, Object... requestItems);
}