org.zodiac.template.freemarker.DefaultFreeMarkerAutoIncludes Maven / Gradle / Ivy
The newest version!
package org.zodiac.template.freemarker;
import java.util.Collections;
import java.util.List;
import org.springframework.lang.NonNull;
import org.zodiac.sdk.toolkit.util.collection.CollUtil;
public class DefaultFreeMarkerAutoIncludes implements FreeMarkerAutoIncludes {
private List autoIncludes;
public DefaultFreeMarkerAutoIncludes(@NonNull String... autoIncludes) {
this.autoIncludes = CollUtil.unmodifiableList(autoIncludes);
}
public DefaultFreeMarkerAutoIncludes(@NonNull List autoIncludes) {
this.autoIncludes = null != autoIncludes ? CollUtil.unmodifiableList(autoIncludes) : Collections.emptyList();
}
@Override
public List autoIncludes() {
return autoIncludes;
}
}