org.apache.tiles.definition.DefinitionsReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiles-core Show documentation
Show all versions of tiles-core Show documentation
Tiles Core Library, including basic implementation of the APIs. Upgraded to the Jakarta EE platform.
The newest version!
/*
* $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.definition;
import java.util.Map;
import org.apache.tiles.Definition;
/**
* Interface for reading {@link Definition}
from a source.
*
* This interface provides a standard way to read
* {@link Definition}
objects from a source. Implementations
* should define what the source is, whether it be a persistent store such as a
* configuration file or database, or something like a web service. The
* DefinitionsReader is responsible for reading from a single location. It does
* not perform any internationalization duties or inheritance of Definitions.
* It only reads from the source and returns a Map of objects read.
*
* @version $Rev$ $Date$
*/
public interface DefinitionsReader {
/**
* Reads {@link Definition}
objects from a source.
*
* Implementations should publish what type of source object is expected.
*
* @param source The source from which definitions will be read.
* @return a Map of Definition
objects read from
* the source.
* @throws DefinitionsFactoryException if the source is invalid or
* an error occurs when reading definitions.
*/
Map read(Object source);
}