keywind/src/test/java/org/keywind/theme/AuthenticationUtil.java
2023-09-24 00:00:00 +04:00

13 lines
325 B
Java

package org.keywind.theme;
import java.util.List;
import freemarker.template.TemplateMethodModelEx;
import freemarker.template.TemplateModelException;
public class AuthenticationUtil implements TemplateMethodModelEx {
@Override
public Object exec(List arguments) throws TemplateModelException {
return true;
}
}