blob: 5f643cbeb8f43ffe95d10a2cc8ff3cee0d24ff9b [file] [log] [blame]
// Copyright 2008, 2009 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.tapestry5.spring;
import org.apache.tapestry5.ioc.annotations.UsesOrderedConfiguration;
import org.springframework.web.context.ConfigurableWebApplicationContext;
import javax.servlet.ServletContext;
/**
* A bridge from Spring's approach to customizing the application context, over to Tapestry's approach. This is a
* chain-of-command service.
*/
@UsesOrderedConfiguration(ApplicationContextCustomizer.class)
public interface ApplicationContextCustomizer
{
/**
* Allows the instantiated application context to be customized before it is initially {@linkplain
* org.springframework.context.ConfigurableApplicationContext#refresh() refreshed}.
*
* @param servletContext
* @param applicationContext
*/
void customizeApplicationContext(ServletContext servletContext,
ConfigurableWebApplicationContext applicationContext);
}