Modified: portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/tools/pamanager/servletcontainer/ApplicationServerManager.java URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/tools/pamanager/servletcontainer/ApplicationServerManager.java?rev=1595089&r1=1595088&r2=1595089&view=diff ============================================================================== --- portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/tools/pamanager/servletcontainer/ApplicationServerManager.java (original) +++ portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/tools/pamanager/servletcontainer/ApplicationServerManager.java Fri May 16 02:42:46 2014 @@ -45,7 +45,6 @@ public interface ApplicationServerManage * * @param appPath path to restart * @return container-specific status message - * @throws HttpException * @throws IOException */ ApplicationServerManagerResult start( String appPath ) throws IOException; @@ -59,7 +58,6 @@ public interface ApplicationServerManage * * @param appPath * @return container-specific status message - * @throws HttpException * @throws IOException */ ApplicationServerManagerResult stop( String appPath ) throws IOException; @@ -74,7 +72,6 @@ public interface ApplicationServerManage * * @param appPath * @return container-specific status message - * @throws HttpException * @throws IOException */ ApplicationServerManagerResult reload( String appPath ) throws IOException; @@ -87,7 +84,6 @@ public interface ApplicationServerManage * Undeploys the application represented by the context path, <code>appPath</cod * @param appPath * @return container-specific status message - * @throws HttpException * @throws IOException */ ApplicationServerManagerResult undeploy( String appPath ) throws IOException; @@ -105,7 +101,6 @@ public interface ApplicationServerManage * @param is * @param size size (in bytes) of InputStream <code>is</code> * @return - * @throws HttpException * @throws IOException */ ApplicationServerManagerResult deploy( String appPath, InputStream is, int size ) throws IOException;
Modified: portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/userinfo/UserInfoManager.java URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/userinfo/UserInfoManager.java?rev=1595089&r1=1595088&r2=1595089&view=diff ============================================================================== --- portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/userinfo/UserInfoManager.java (original) +++ portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/userinfo/UserInfoManager.java Fri May 16 02:42:46 2014 @@ -16,11 +16,11 @@ */ package org.apache.jetspeed.userinfo; -import java.util.Map; - import org.apache.jetspeed.request.RequestContext; import org.apache.pluto.container.UserInfoService; +import java.util.Map; + /** * <p>The {@link UserInfoManager} retrieve the Map that will be set as a * <code>(PortletRequest.USER_INFO</code> request attribute for a specific @@ -53,9 +53,9 @@ public interface UserInfoManager extends /** * <p>Provide the user info map of user attributes for a given portlet application.</p> - * @param oid The portlet application object id. + * @param appName The portlet application name * @param context The request context. - * @return The {@link PortletRequest.USER_INFO} map. + * @return The user info map. */ Map<String, String> getUserInfoMap(String appName, RequestContext context); } Modified: portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/util/FileSystemHelper.java URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/util/FileSystemHelper.java?rev=1595089&r1=1595088&r2=1595089&view=diff ============================================================================== --- portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/util/FileSystemHelper.java (original) +++ portals/jetspeed-2/portal/trunk/jetspeed-api/src/main/java/org/apache/jetspeed/util/FileSystemHelper.java Fri May 16 02:42:46 2014 @@ -35,7 +35,7 @@ public interface FileSystemHelper * </p> * * @param directory Directory to copy content from - * @throws {@link java.io.IlleaglArgumentException} if the <code>directory.isDirectory</code> + * @throws {@link java.io.IOException} if the <code>directory.isDirectory</code> * returns <code>false</code> */ void copyFrom(File directory) throws IOException; @@ -93,7 +93,7 @@ public interface FileSystemHelper * * Returns the true location of this FileSystemHelper backing object on * the file system. This IS NOT always as the path of the object returned - * from the {@link getRootDirectory} method. + * from the {@link FileSystemHelper#getRootDirectory} method. * * @return the true location of this FileSystemHelper backing object. */ --------------------------------------------------------------------- To unsubscribe, e-mail: jetspeed-dev-unsubscr...@portals.apache.org For additional commands, e-mail: jetspeed-dev-h...@portals.apache.org