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.3 by tdb, Mon Nov 13 16:11:03 2000 UTC vs.
Revision 1.7 by tdb, Mon Nov 13 18:34:12 2000 UTC

# Line 1 | Line 1
1   //---PACKAGE DECLARATION---
2  
3   //---IMPORTS---
4 < import core.*;
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(), "created: " + configurationFile.getName() + "(" + date + ")" );
50 +        
51          try {
52              InputStream configurationStream = new FileInputStream(configurationFile);
53              _properties.load(configurationStream);
# Line 71 | Line 73 | class ConfigurationServant extends ConfigurationPOA {
73      }
74      
75      /**
76 <     * Overrides the {@link #java.lang.Object.toString() Object.toString()}
76 >     * Overrides the {@link java.lang.Object#toString() Object.toString()}
77       * method to provide clean logging (every class should have this).
78       *
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---

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines