com.x5.template.ContentSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.template;
public interface ContentSource
{
public String fetch(String itemName);
public boolean provides(String itemName);
public String getProtocol();
/* optional, may return null */
public Snippet getSnippet(String snippetName);
}