From 3a08768f324708003e3fce73884c3d78151e1968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Gielen?= Date: Thu, 21 Aug 2008 20:16:02 +0000 Subject: [PATCH] Javadoc fix git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@687847 13f79535-47bb-0310-9956-ffa450edef68 --- .../dispatcher/StaticContentLoader.java | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java b/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java index 4870da411..9e3fc1741 100644 --- a/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java +++ b/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java @@ -29,20 +29,17 @@ import org.apache.struts2.dispatcher.ng.HostConfig; /** * Interface for loading static resources, based on a path - * */ public interface StaticContentLoader { /** - * @param path - * Requested resource path + * @param path Requested resource path * @return true if this loader is able to load this type of resource, false otherwise */ public boolean canHandle(String path); /** - * @param filterConfig - * The filter configuration + * @param filterConfig The filter configuration */ public abstract void setHostConfig(HostConfig filterConfig); @@ -50,14 +47,10 @@ public interface StaticContentLoader { * Locate a static resource and copy directly to the response, setting the * appropriate caching headers. * - * @param name - * The resource name - * @param request - * The request - * @param response - * The response - * @throws IOException - * If anything goes wrong + * @param path The resource name + * @param request The request + * @param response The response + * @throws IOException If anything goes wrong */ public abstract void findStaticResource(String path, HttpServletRequest request, HttpServletResponse response) throws IOException;