All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy