com.aspectran.thymeleaf.context.ActivityEngineContext Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2025 The Aspectran Project
*
* 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 com.aspectran.thymeleaf.context;
import com.aspectran.core.activity.Activity;
import org.thymeleaf.IEngineConfiguration;
import org.thymeleaf.context.Context;
import org.thymeleaf.context.EngineContext;
import org.thymeleaf.context.IContext;
import org.thymeleaf.context.IEngineContext;
import org.thymeleaf.context.WebContext;
import org.thymeleaf.engine.TemplateData;
import java.util.Locale;
import java.util.Map;
/**
* Created: 2024-11-27
*/
public class ActivityEngineContext extends EngineContext implements CurrentActivityHolder {
private final Activity activity;
/**
* Creates a new instance of this {@link IEngineContext} implementation.
*
* Note that implementations of {@link IEngineContext} are not meant to be used in order to call
* the template engine (use implementations of {@link IContext} such as {@link Context} or {@link WebContext}
* instead). This is therefore mostly an internal implementation, and users should have no reason
* to ever call this constructor except in very specific integration/extension scenarios.
*
* @param activity the aspectran activity
* @param configuration the configuration instance being used
* @param templateData the template data for the template to be processed
* @param templateResolutionAttributes the template resolution attributes
* @param locale the locale
* @param variables the context variables, probably coming from another {@link IContext} implementation
*/
public ActivityEngineContext(
Activity activity, IEngineConfiguration configuration, TemplateData templateData,
Map templateResolutionAttributes, Locale locale, Map variables) {
super(configuration, templateData, templateResolutionAttributes, locale, variables);
this.activity = activity;
}
@Override
public Activity getActivity() {
return activity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy