ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/core/ConfigurationServant.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/core/ConfigurationServant.java (file contents):
Revision 1.5 by tdb, Mon Nov 13 17:07:07 2000 UTC vs.
Revision 1.9 by tdb, Mon Nov 20 15:49:46 2000 UTC

# Line 4 | Line 4
4   import uk.ac.ukc.iscream.core.*;
5   import java.util.*;
6   import java.io.*;
7 + import java.text.DateFormat;
8  
9   /**
10   * An implementation of the Configuration IDL
# Line 42 | Line 43 | class ConfigurationServant extends ConfigurationPOA {
43       */
44      ConfigurationServant(File configurationFile, Logger logRef) {
45          _lastModified = configurationFile.lastModified();
45        
46          _logRef = logRef;
47        _logRef.write(this.toString(), "created - last modified:" + getLastModified());
47          
48 +        String date = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM).format(new Date(getLastModified()));
49 +        _logRef.write(this.toString(), Logger.SYSMSG, "created: " + configurationFile.getName() + "(" + date + ")" );
50 +        
51          try {
52              InputStream configurationStream = new FileInputStream(configurationFile);
53              _properties.load(configurationStream);
# Line 77 | Line 79 | class ConfigurationServant extends ConfigurationPOA {
79       * @return the name of this class and its CVS revision
80       */
81      public String toString() {
82 <        return this.getClass().getName() + ":" + REVISION;
82 >        return this.getClass().getName() + "(" + REVISION.substring(11, REVISION.length() - 2) + ")";
83      }
84  
85   //---PRIVATE METHODS---
86 +
87 +    protected void finalize() throws Throwable {
88 +        _logRef.write(this.toString(), Logger.DEBUG, "finalized (ick, us english!)");
89 +    }
90  
91   //---ACCESSOR/MUTATOR METHODS---
92  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines