CVS update: talon/src/java/talon/implementations

From: cvs@openprivacy.org
Date: Wed Mar 14 2001 - 17:33:38 PST

  • Next message: cvs@openprivacy.org: "CVS update: talon/src/java/talon/interfaces"

    Date: Wednesday March 14, 19101 @ 17:33
    Author: burton
    CVSWEB Options: -------------------

    Main CVSWeb: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi

    View this module: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations

    -----------------------------------

    Update of /usr/local/cvs/public/talon/src/java/talon/implementations
    In directory giga:/tmp/cvs-serv4084/src/java/talon/implementations

    Modified Files:
            FilePropertyManager.java SimpleDatabaseConnectionPool.java
            SimpleLogger.java SimplePropertyManager.java
    Log Message:
    refactoring component package from interfaces to components

    *****************************************************************
    File: talon/src/java/talon/implementations/FilePropertyManager.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/FilePropertyManager.java?annotate=1.3

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/FilePropertyManager.java?rev=1.3&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/FilePropertyManager.java.diff?r1=1.3&r2=1.2

    -----------------------------------

    Index: talon/src/java/talon/implementations/FilePropertyManager.java
    diff -u talon/src/java/talon/implementations/FilePropertyManager.java:1.2 talon/src/java/talon/implementations/FilePropertyManager.java:1.3
    --- talon/src/java/talon/implementations/FilePropertyManager.java:1.2 Sun Feb 11 14:02:11 2001
    +++ talon/src/java/talon/implementations/FilePropertyManager.java Wed Mar 14 17:33:38 2001
    @@ -14,7 +14,7 @@
     import java.util.*;
     
     import talon.*;
    -import talon.interfaces.*;
    +import talon.components.*;
     import talon.util.*;
     
     
    @@ -32,7 +32,7 @@
      * Singleton
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
      */
     public class FilePropertyManager extends BasePropertyManager {
     
    @@ -45,7 +45,7 @@
          * Constructor when used as a Component
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
          */
         public FilePropertyManager( ) { }
         
    @@ -53,7 +53,7 @@
          * Constructor when used as an Object
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
          */
         public FilePropertyManager( ComponentHandle handle,
                                     String project ) throws TalonException {
    @@ -68,7 +68,7 @@
          *
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
          */
         public void init() throws TalonException {
     
    @@ -114,7 +114,7 @@
          * Given a project name, determine where its files might be stored.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
          */
         private String[] getFileLocations( String project ) {
     
    @@ -156,7 +156,7 @@
          * Get the property file that this was initialized from.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: FilePropertyManager.java,v 1.2 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: FilePropertyManager.java,v 1.3 2001/03/15 01:33:38 burton Exp $
          */
         public String getPropertyFilename() {
             return this.propertyFilename;

    *****************************************************************
    File: talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java?annotate=1.2

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java?rev=1.2&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java.diff?r1=1.2&r2=1.1

    -----------------------------------

    Index: talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java
    diff -u talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java:1.1 talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java:1.2
    --- talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java:1.1 Sun Mar 11 15:54:31 2001
    +++ talon/src/java/talon/implementations/SimpleDatabaseConnectionPool.java Wed Mar 14 17:33:38 2001
    @@ -15,8 +15,8 @@
     import java.sql.*;
     import talon.*;
     import talon.Component;
    -import talon.interfaces.*;
    -import talon.interfaces.exceptions.*;
    +import talon.components.*;
    +import talon.components.exceptions.*;
     import talon.util.net.*;
     
     /**
    @@ -25,7 +25,7 @@
      *
      * @see DatabaseConnectionPool
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleDatabaseConnectionPool.java,v 1.1 2001/03/11 23:54:31 burton Exp $
    + * @version $Id: SimpleDatabaseConnectionPool.java,v 1.2 2001/03/15 01:33:38 burton Exp $
      */
     public class SimpleDatabaseConnectionPool extends BaseComponent implements Component,
                                                                                DatabaseConnectionPool {
    @@ -80,7 +80,7 @@
          * Call when you need a connetion.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleDatabaseConnectionPool.java,v 1.1 2001/03/11 23:54:31 burton Exp $
    + * @version $Id: SimpleDatabaseConnectionPool.java,v 1.2 2001/03/15 01:33:38 burton Exp $
          */
         public synchronized Connection getConnection() {
             return this.connection;
    @@ -90,7 +90,7 @@
          * Call when you are done with a connection.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleDatabaseConnectionPool.java,v 1.1 2001/03/11 23:54:31 burton Exp $
    + * @version $Id: SimpleDatabaseConnectionPool.java,v 1.2 2001/03/15 01:33:38 burton Exp $
          */
         public synchronized void releaseConnection( Connection connection ) {
             //noop

    *****************************************************************
    File: talon/src/java/talon/implementations/SimpleLogger.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleLogger.java?annotate=1.5

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleLogger.java?rev=1.5&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimpleLogger.java.diff?r1=1.5&r2=1.4

    -----------------------------------

    Index: talon/src/java/talon/implementations/SimpleLogger.java
    diff -u talon/src/java/talon/implementations/SimpleLogger.java:1.4 talon/src/java/talon/implementations/SimpleLogger.java:1.5
    --- talon/src/java/talon/implementations/SimpleLogger.java:1.4 Sun Feb 11 14:02:11 2001
    +++ talon/src/java/talon/implementations/SimpleLogger.java Wed Mar 14 17:33:38 2001
    @@ -13,7 +13,7 @@
     import java.util.*;
     
     import talon.*;
    -import talon.interfaces.*;
    +import talon.components.*;
     
     
     /**
    @@ -30,7 +30,7 @@
      * - stderr -> If true, log to stderr
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
      */
     public class SimpleLogger extends BaseComponent implements Component, Logger {
     
    @@ -75,7 +75,7 @@
          * Default constructor when used as a Component
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public SimpleLogger() { }
     
    @@ -83,7 +83,7 @@
          * Default constructor when used as an Object
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public SimpleLogger( ComponentHandle handle,
                              boolean debug,
    @@ -103,7 +103,7 @@
          *
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void init() throws TalonException {
     
    @@ -129,7 +129,7 @@
          * Log a message
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void message( String message ) {
             message( null, message );
    @@ -139,7 +139,7 @@
          * Log a message
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void message( Object source, String message ) {
             logString( source, getLogPrefix() + " -> " + message );
    @@ -149,7 +149,7 @@
          * Log an error
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void error( String message ) {
             error( null, message );
    @@ -159,7 +159,7 @@
          * Log an error
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void error( Object source, String message ) {
             logString( source, getLogPrefix() + " -> ERROR: " + message );
    @@ -170,7 +170,7 @@
          * Log a warning
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void warning( String message ) {
             warning( null, message );
    @@ -180,7 +180,7 @@
          * Log a warning
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void warning( Object source, String message ) {
             logString( source, getLogPrefix() + " -> WARNING: " + message );
    @@ -190,7 +190,7 @@
          * Log a debug message
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void debug( String message ) {
             debug( null, message );
    @@ -200,7 +200,7 @@
          * Log a debug message
          *
          * @author <A HREF="mailto:burton@apache.org">Kevin A. Burton</A>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         public void debug( Object source, String message ) {
     
    @@ -213,7 +213,7 @@
         /**
          * @see #logString
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         private void logString( String s ) {
             logString( null, s);
    @@ -224,7 +224,7 @@
          *
          * @param source Object source where this was logged from
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         private void logString( Object source, String s ) {
     
    @@ -277,7 +277,7 @@
          * Get the prefix for log output.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         private String getLogPrefix() {
             return this.project + " [" + this.getDate() + "]";
    @@ -289,7 +289,7 @@
          * Determine if it is OK to log to disk
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         private boolean isFileEnabled() {
     
    @@ -332,7 +332,7 @@
          * Get the date/time in a nice format for logging.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimpleLogger.java,v 1.4 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: SimpleLogger.java,v 1.5 2001/03/15 01:33:38 burton Exp $
          */
         private String getDate() {
     

    *****************************************************************
    File: talon/src/java/talon/implementations/SimplePropertyManager.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimplePropertyManager.java?annotate=1.2

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimplePropertyManager.java?rev=1.2&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/implementations/SimplePropertyManager.java.diff?r1=1.2&r2=1.1

    -----------------------------------

    Index: talon/src/java/talon/implementations/SimplePropertyManager.java
    diff -u talon/src/java/talon/implementations/SimplePropertyManager.java:1.1 talon/src/java/talon/implementations/SimplePropertyManager.java:1.2
    --- talon/src/java/talon/implementations/SimplePropertyManager.java:1.1 Tue Jan 16 08:06:30 2001
    +++ talon/src/java/talon/implementations/SimplePropertyManager.java Wed Mar 14 17:33:38 2001
    @@ -14,7 +14,7 @@
     import java.util.*;
     
     import talon.*;
    -import talon.interfaces.*;
    +import talon.components.*;
     import talon.util.*;
     
     
    @@ -23,7 +23,7 @@
      * Nothing is done but it can have its setter methods called.
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimplePropertyManager.java,v 1.1 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: SimplePropertyManager.java,v 1.2 2001/03/15 01:33:38 burton Exp $
      */
     public class SimplePropertyManager extends BasePropertyManager {
     
    @@ -33,7 +33,7 @@
          *
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SimplePropertyManager.java,v 1.1 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: SimplePropertyManager.java,v 1.2 2001/03/15 01:33:38 burton Exp $
          */
         public void init() throws TalonException { }
     



    This archive was generated by hypermail 2b30 : Wed Mar 14 2001 - 17:34:41 PST