001
014
015 package com.liferay.portal.kernel.servlet.taglib;
016
017 import java.io.IOException;
018
019 import javax.servlet.http.HttpServletRequest;
020 import javax.servlet.http.HttpServletResponse;
021
022
025 public interface TagDynamicInclude {
026
027 public void include(
028 HttpServletRequest request, HttpServletResponse response,
029 String tagClassName, String tagDynamicId, String tagPoint)
030 throws IOException;
031
032 public void register(TagDynamicIncludeRegistry tagDynamicIncludeRegistry);
033
034 public interface TagDynamicIncludeRegistry {
035
036 public void register(
037 String tagClassName, String tagDynamicId, String tagPoint);
038
039 }
040
041 }