You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by mp...@apache.org on 2001/10/31 01:56:35 UTC

cvs commit: jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload DefaultFileItem.java FileItem.java TurbineUploadService.java UploadService.java

mpoeschl    01/10/30 16:56:34

  Modified:    src/core/java/org/apache/fulcrum
                        InitializationException.java
                        InstantiationException.java
               src/services/java/org/apache/fulcrum/db DatabaseService.java
               src/services/java/org/apache/fulcrum/security
                        TurbineSecurity.java
               src/services/java/org/apache/fulcrum/security/impl/db
                        DBUserManager.java
               src/services/java/org/apache/fulcrum/upload
                        DefaultFileItem.java FileItem.java
                        TurbineUploadService.java UploadService.java
  Log:
  fix some javadoc warnings
  
  Revision  Changes    Path
  1.3       +1 -2      jakarta-turbine-fulcrum/src/core/java/org/apache/fulcrum/InitializationException.java
  
  Index: InitializationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/core/java/org/apache/fulcrum/InitializationException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InitializationException.java	2001/08/10 11:46:22	1.2
  +++ InitializationException.java	2001/10/31 00:56:34	1.3
  @@ -60,8 +60,7 @@
    *
    * @author <a href="mailto:burton@apache.org">Kevin Burton</a>
    * @author <a href="mailto:krzewski@e-point.pl">Rafal Krzewski</a>
  - * @version $Id: InitializationException.java,v 1.2 2001/08/10 11:46:22 knielsen Exp $
  - * @see org.apache.fulcrum.Initable
  + * @version $Id: InitializationException.java,v 1.3 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public class InitializationException
       extends ServiceException
  
  
  
  1.3       +1 -2      jakarta-turbine-fulcrum/src/core/java/org/apache/fulcrum/InstantiationException.java
  
  Index: InstantiationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/core/java/org/apache/fulcrum/InstantiationException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InstantiationException.java	2001/08/10 11:46:22	1.2
  +++ InstantiationException.java	2001/10/31 00:56:34	1.3
  @@ -61,8 +61,7 @@
    *
    * @author <a href="mailto:burton@apache.org">Kevin Burton</a>
    * @author <a href="mailto:krzewski@e-point.pl">Rafal Krzewski</a>
  - * @version $Id: InstantiationException.java,v 1.2 2001/08/10 11:46:22 knielsen Exp $
  - * @see org.apache.fulcrum.Initable
  + * @version $Id: InstantiationException.java,v 1.3 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public class InstantiationException
       extends ServiceRuntimeException
  
  
  
  1.4       +3 -3      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/db/DatabaseService.java
  
  Index: DatabaseService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/db/DatabaseService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DatabaseService.java	2001/08/10 11:46:23	1.3
  +++ DatabaseService.java	2001/10/31 00:56:34	1.4
  @@ -61,7 +61,7 @@
   
   /**
    * This service provides database connection pooling and manages
  - * {@link org.apache.turbine.util.db.map.DatabaseMap} objects used throughout
  + * {@link org.apache.torque.map.DatabaseMap} objects used throughout
    * a Turbine application.
    * It provides single point of access to a pool of maps, assuring that every
    * client will access the same instance of DatabaseMap object.
  @@ -73,7 +73,7 @@
    * {@link #registerPool(String,String,String,String,String)} method.
    *
    * <p> You can use {@link #getConnection(String)} to acquire a
  - * {@link org.apache.turbine.util.db.pool.DBConnection} object, which in
  + * {@link org.apache.torque.pool.DBConnection} object, which in
    * turn can be used to create <code>java.sql.Statement</code> objects.
    *
    * <p>When you are done using the <code>DBConnection</code> you <strong>must</strong>
  @@ -83,7 +83,7 @@
    * to the pool.<br>
    *
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
  - * @version $Id: DatabaseService.java,v 1.3 2001/08/10 11:46:23 knielsen Exp $
  + * @version $Id: DatabaseService.java,v 1.4 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public interface DatabaseService extends Service
   {
  
  
  
  1.3       +5 -3      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/security/TurbineSecurity.java
  
  Index: TurbineSecurity.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/security/TurbineSecurity.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TurbineSecurity.java	2001/08/02 05:31:12	1.2
  +++ TurbineSecurity.java	2001/10/31 00:56:34	1.3
  @@ -82,10 +82,11 @@
    * <a name="global">
    * <p> Certain Roles that the Users may have in the system may are not related
    * to any specific resource nor entity. They are assigned within a special group
  - * named 'global' that can be referenced in the code as {@link org.apache.turbine.om.security.Group#GLOBAL_GROUP_NAME}.
  + * named 'global' that can be referenced in the code as
  + * {@link org.apache.fulcrum.security.entity.Group#GLOBAL_GROUP_NAME}.
    *
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
  - * @version $Id: TurbineSecurity.java,v 1.2 2001/08/02 05:31:12 jvanzyl Exp $
  + * @version $Id: TurbineSecurity.java,v 1.3 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public abstract class TurbineSecurity
   {
  @@ -681,7 +682,8 @@
       }
   
       /**
  -     * Stores Permission's attributes. The Permissions is required to exist in the system.
  +     * Stores Permission's attributes. The Permissions is required to exist in
  +     * the system.
        *
        * @param permission The Permission to be stored.
        * @throws DataBackendException if there was an error accessing the data backend.
  
  
  
  1.4       +5 -5      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/security/impl/db/DBUserManager.java
  
  Index: DBUserManager.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/security/impl/db/DBUserManager.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DBUserManager.java	2001/08/13 00:21:31	1.3
  +++ DBUserManager.java	2001/10/31 00:56:34	1.4
  @@ -73,20 +73,20 @@
   import org.apache.fulcrum.security.TurbineSecurity;
   
   /**
  - * An UserManager performs {@link org.apache.fulcrum.security.entity.User} objects
  - * related tasks on behalf of the
  + * An UserManager performs {@link org.apache.fulcrum.security.entity.User}
  + * objects related tasks on behalf of the
    * {@link org.apache.fulcrum.security.BaseSecurityService}.
    *
    * This implementation uses a relational database for storing user data. It
    * expects that the User interface implementation will be castable to
  - * {@link org.apache.turbine.om.BaseObject}.
  + * {@link org.apache.torque.om.BaseObject}.
    *
    * @author <a href="mailto:jon@collab.net">Jon S. Stevens</a>
    * @author <a href="mailto:jmcnally@collab.net">John D. McNally</a>
    * @author <a href="mailto:frank.kim@clearink.com">Frank Y. Kim</a>
    * @author <a href="mailto:cberry@gluecode.com">Craig D. Berry</a>
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
  - * @version $Id: DBUserManager.java,v 1.3 2001/08/13 00:21:31 jon Exp $
  + * @version $Id: DBUserManager.java,v 1.4 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public class DBUserManager implements UserManager
   {
  @@ -94,7 +94,7 @@
        * System.out.println() debugging
        */
       private static final boolean DEBUG = false;
  -    
  +
       /**
        * Check whether a specified user's account exists.
        *
  
  
  
  1.5       +4 -4      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/DefaultFileItem.java
  
  Index: DefaultFileItem.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/DefaultFileItem.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DefaultFileItem.java	2001/08/23 18:49:46	1.4
  +++ DefaultFileItem.java	2001/10/31 00:56:34	1.5
  @@ -73,10 +73,10 @@
    * <code>multipart/form-data</code> POST request.
    *
    * <p> After retrieving an instance of this class from the {@link
  - * org.apache.fulcrum.parser.ParameterParser ParameterParser} (see
  - * {@link org.apache.fulcrum.parser.ParameterParser#getFileItem(String)
  + * org.apache.fulcrum.util.parser.ParameterParser ParameterParser} (see
  + * {@link org.apache.fulcrum.util.parser.ParameterParser#getFileItem(String)
    * ParameterParser.getFileItem(String)} and {@link
  - * org.apache.fulcrum.parser.ParameterParser#getFileItems(String)
  + * org.apache.fulcrum.util.parser.ParameterParser#getFileItems(String)
    * ParameterParser.getFileItems(String)}) you can use it to acces the
    * data that was sent by the browser.  You may either request all
    * contents of file at once using {@link #get()} or request an {@link
  @@ -91,7 +91,7 @@
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
    * @author <a href="mailto:sean@informage.net">Sean Legassick</a>
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: DefaultFileItem.java,v 1.4 2001/08/23 18:49:46 jon Exp $
  + * @version $Id: DefaultFileItem.java,v 1.5 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public class DefaultFileItem
       implements FileItem
  
  
  
  1.4       +4 -4      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/FileItem.java
  
  Index: FileItem.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/FileItem.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FileItem.java	2001/08/17 02:01:22	1.3
  +++ FileItem.java	2001/10/31 00:56:34	1.4
  @@ -67,10 +67,10 @@
    * <code>multipart/form-data</code> POST request.
    *
    * <p> After retrieving an instance of this class from the {@link
  - * org.apache.fulcrum.parser.ParameterParser ParameterParser} (see
  - * {@link org.apache.fulcrum.parser.ParameterParser#getFileItem(String)
  + * org.apache.fulcrum.util.parser.ParameterParser ParameterParser} (see
  + * {@link org.apache.fulcrum.util.parser.ParameterParser#getFileItem(String)
    * ParameterParser.getFileItem(String)} and {@link
  - * org.apache.fulcrum.parser.ParameterParser#getFileItems(String)
  + * org.apache.fulcrum.util.parser.ParameterParser#getFileItems(String)
    * ParameterParser.getFileItems(String)}) you can use it to acces the
    * data that was sent by the browser.  You may either request all
    * contents of file at once using {@link #get()} or request an {@link
  @@ -85,7 +85,7 @@
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
    * @author <a href="mailto:sean@informage.net">Sean Legassick</a>
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: FileItem.java,v 1.3 2001/08/17 02:01:22 dlr Exp $
  + * @version $Id: FileItem.java,v 1.4 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public interface FileItem
       extends DataSource
  
  
  
  1.4       +3 -3      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/TurbineUploadService.java
  
  Index: TurbineUploadService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/TurbineUploadService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TurbineUploadService.java	2001/08/17 02:01:22	1.3
  +++ TurbineUploadService.java	2001/10/31 00:56:34	1.4
  @@ -73,13 +73,13 @@
    *
    * <p> Files will be stored in temporary disk storage on in memory,
    * depending on request size, and will be available from the {@link
  - * org.apache.fulcrum.parser.ParameterParser} as {@link
  + * org.apache.fulcrum.util.parser.ParameterParser} as {@link
    * org.apache.fulcrum.upload.FileItem}s.
    *
    * <p>This implementation of {@link UploadService} handles multiple
    * files per single html widget, sent using multipar/mixed encoding
    * type, as specified by RFC 1867.  Use {@link
  - * org.apache.fulcrum.parser.ParameterParser#getFileItems(String)} to
  + * org.apache.fulcrum.util.parser.ParameterParser#getFileItems(String)} to
    * acquire an array of {@link
    * org.apache.fulcrum.upload.FileItem}s associated with given
    * html widget.
  @@ -87,7 +87,7 @@
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
    * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: TurbineUploadService.java,v 1.3 2001/08/17 02:01:22 dlr Exp $
  + * @version $Id: TurbineUploadService.java,v 1.4 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public class TurbineUploadService
       extends BaseUploadService
  
  
  
  1.4       +3 -3      jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/UploadService.java
  
  Index: UploadService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-fulcrum/src/services/java/org/apache/fulcrum/upload/UploadService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UploadService.java	2001/08/17 02:01:22	1.3
  +++ UploadService.java	2001/10/31 00:56:34	1.4
  @@ -63,12 +63,12 @@
    * <p> This service handles parsing <code>multipart/form-data</code>
    * POST requests and turing them into form fields and uploaded files.
    * This can be either performed automatically by the {@link
  - * org.apache.fulcrum.parser.ParameterParser} or manually by an user
  + * org.apache.fulcrum.util.parser.ParameterParser} or manually by an user
    * definded {@link org.apache.turbine.modules.Action}.
    *
    * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
    * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
  - * @version $Id: UploadService.java,v 1.3 2001/08/17 02:01:22 dlr Exp $
  + * @version $Id: UploadService.java,v 1.4 2001/10/31 00:56:34 mpoeschl Exp $
    */
   public interface UploadService
       extends Service
  @@ -125,7 +125,7 @@
        * <p> The default value of 'automatic' property
        * (<code>false</code>).  If set to <code>true</code>, parsing the
        * multipart request will be performed automaticaly by {@link
  -     * org.apache.fulcrum.parser.ParameterParser}.  Otherwise, an {@link
  +     * org.apache.fulcrum.util.parser.ParameterParser}.  Otherwise, an {@link
        * org.apache.turbine.modules.Action} may decide to to parse the
        * request by calling {@link #parseRequest(HttpServletRequest,
        * ParameterParser, String) parseRequest} manually.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>