org.beetl.ext.spring6.AbstractGroupTemplateConfig Maven / Gradle / Ivy
/*
464 [The "BSD license"]
Copyright (c) 2011-2013 闲大赋 (李家智)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.beetl.ext.spring6;
import org.beetl.core.*;
import org.beetl.core.tag.TagFactory;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
/**
* GroupTemplate对象配置类的抽象基类
*
* @author fox
*/
public abstract class AbstractGroupTemplateConfig {
/* ----- ----- ----- ----- 其他方法 ----- ----- ----- ----- */
/**
* 自定义函数
*/
private Map functions = Collections.emptyMap();
/**
* 自定义类型默认格式化器
*/
private Map, Format> typeFormats = Collections.emptyMap();
/**
* 自定义格式化器
*/
private Map formats = Collections.emptyMap();
/**
* 自定义标签
*/
private Map tagFactorys = Collections.emptyMap();
/**
* 自定义函数包
*/
private Map functionPackages = Collections.emptyMap();
/**
* 自定义虚拟属性
*/
private Map, VirtualClassAttribute> virtualClassAttributes = Collections.emptyMap();
/**
* 自定义虚拟属性执行器
*/
private List virtualAttributeEvals = Collections.emptyList();
/**
* 自定义函数
*/
public void setFunctions(Map functions) {
this.functions = functions;
}
/**
* 自定义类型默认格式化器
*/
public void setTypeFormats(Map, Format> typeFormats) {
this.typeFormats = typeFormats;
}
/**
* 自定义格式化器
*/
public void setFormats(Map formats) {
this.formats = formats;
}
/**
* 自定义标签
*/
public void setTagFactorys(Map tagFactorys) {
this.tagFactorys = tagFactorys;
}
/**
* 自定义函数包
*/
public void setFunctionPackages(Map functionPackages) {
this.functionPackages = functionPackages;
}
/**
* 自定义虚拟属性
*/
public void setVirtualClassAttributes(Map, VirtualClassAttribute> virtualClassAttributes) {
this.virtualClassAttributes = virtualClassAttributes;
}
/**
* 自定义虚拟属性执行器
*/
public void setVirtualAttributeEvals(List virtualAttributeEvals) {
this.virtualAttributeEvals = virtualAttributeEvals;
}
/* ----- ----- ----- ----- 其他方法 ----- ----- ----- ----- */
/**
* 配置GroupTemplate
*/
public void config(GroupTemplate groupTemplate) {
// 注册自定义函数
for (Entry entry : functions.entrySet()) {
groupTemplate.registerFunction(entry.getKey(), entry.getValue());
}
// 注册自定义类型默认格式化器
for (Entry, Format> entry : typeFormats.entrySet()) {
groupTemplate.registerDefaultFormat(entry.getKey(), entry.getValue());
}
// 注册自定义格式化器
for (Entry entry : formats.entrySet()) {
groupTemplate.registerFormat(entry.getKey(), entry.getValue());
}
// 注册自定义标签
for (Entry entry : tagFactorys.entrySet()) {
groupTemplate.registerTagFactory(entry.getKey(), entry.getValue());
}
// 注册自定义函数包
for (Entry entry : functionPackages.entrySet()) {
groupTemplate.registerFunctionPackage(entry.getKey(), entry.getValue());
}
// 自定义虚拟属性
for (Entry, VirtualClassAttribute> entry : virtualClassAttributes.entrySet()) {
groupTemplate.registerVirtualAttributeClass(entry.getKey(), entry.getValue());
}
// 自定义虚拟属性执行器
for (VirtualAttributeEval virtualAttributeEval : virtualAttributeEvals) {
groupTemplate.registerVirtualAttributeEval(virtualAttributeEval);
}
}
}