stefan      2003/03/18 07:06:13

  Modified:    proposals/jcrri/src/javax/jcr Element.java Node.java
                        Property.java Value.java
               proposals/jcrri/src/org/apache/slide/jcr Test.java
                        TestServer.java
               proposals/jcrri/src/org/apache/slide/jcr/core
                        ContentNode.java ElementImpl.java
                        ElementListener.java ElementManager.java
                        ElementManagerSupport.java HierarchyNode.java
                        IteratorHelper.java NodeImpl.java
                        ObjectClassImpl.java PasswordCredentials.java
                        PropertyImpl.java RepositoryFactory.java
                        RepositoryImpl.java RootContentNode.java
                        TicketImpl.java
               proposals/jcrri/src/org/apache/slide/jcr/fs FileSystem.java
                        FileSystemException.java FileSystemPathUtil.java
               proposals/jcrri/src/org/apache/slide/jcr/fs/dav
                        DavFileSystem.java DavResourceOutputStream.java
               proposals/jcrri/src/org/apache/slide/jcr/fs/local
                        FileUtil.java LocalFileSystem.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/client
                        AccessControlProxy.java ElementProxy.java
                        IteratorHelper.java NodeProxy.java
                        PropertyProxy.java ProxyFactory.java
                        QueryProxy.java RemoteRepositoryFactory.java
                        RepositoryProxy.java TicketProxy.java
                        VersionSelectorProxy.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/common
                        RemoteElementVisitorImpl.java
                        RemoteInputStreamImpl.java
                        RemoteOutputStreamImpl.java
                        SerializableElementVisitor.java
                        SerializableInputStream.java
                        SerializableIterator.java
                        SerializableNodeDefinition.java
                        SerializableOutputStream.java
                        SerializablePropertyDefinition.java
                        SerializableValue.java Wrapper.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/rmi
                        RemoteAccessControl.java RemoteContentPackage.java
                        RemoteElement.java RemoteElementVisitor.java
                        RemoteFilter.java RemoteInputStream.java
                        RemoteNode.java RemoteObjectClass.java
                        RemoteObjectClassRegistry.java
                        RemoteObservation.java RemoteOutputStream.java
                        RemoteProperty.java RemoteQuery.java
                        RemoteRepository.java RemoteTicket.java
                        RemoteVersionSelector.java RemoteXAResource.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/server
                        RemoteAccessControlImpl.java RemoteElementImpl.java
                        RemoteFactory.java RemoteNodeImpl.java
                        RemotePropertyImpl.java RemoteQueryImpl.java
                        RemoteRepositoryImpl.java RemoteTicketImpl.java
                        RemoteVersionSelectorImpl.java
               proposals/jcrri/src/org/apache/slide/jcr/util
                        ChildrenCollector.java Deserializer.java
                        MalformedPathException.java PathUtil.java
                        Serializer.java
  Log:
  updated copyright notice of ASF headers to 2003
  misc. minor corrections
  
  Revision  Changes    Path
  1.2       +1 -0      jakarta-slide/proposals/jcrri/src/javax/jcr/Element.java
  
  Index: Element.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/proposals/jcrri/src/javax/jcr/Element.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Element.java      1 Mar 2003 06:56:04 -0000       1.1
  +++ Element.java      18 Mar 2003 15:06:02 -0000      1.2
  @@ -14,6 +14,7 @@
    * directly. Only <code>[EMAIL PROTECTED] Node} and <code>[EMAIL PROTECTED] 
Property} should be implemented.
    *
    * @author ppiegaze
  + * @author Stefan Guggisberg
    */
   public interface Element {
   
  
  
  
  1.2       +1 -0      jakarta-slide/proposals/jcrri/src/javax/jcr/Node.java
  
  Index: Node.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/proposals/jcrri/src/javax/jcr/Node.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Node.java 1 Mar 2003 06:56:05 -0000       1.1
  +++ Node.java 18 Mar 2003 15:06:02 -0000      1.2
  @@ -56,6 +56,7 @@
    * document for more details.
    *
    * @author ppiegaze
  + * @author Stefan Guggisberg
    */
   public interface Node extends Element {
   
  
  
  
  1.2       +1 -0      jakarta-slide/proposals/jcrri/src/javax/jcr/Property.java
  
  Index: Property.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/proposals/jcrri/src/javax/jcr/Property.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Property.java     1 Mar 2003 06:56:05 -0000       1.1
  +++ Property.java     18 Mar 2003 15:06:02 -0000      1.2
  @@ -20,6 +20,7 @@
    * A property consists of a name and a value. See <code>[EMAIL PROTECTED] 
Value}</code>.
    *
    * @author ppiegaze
  + * @author Stefan Guggisberg
    */
   public interface Property extends Element {
   
  
  
  
  1.2       +1 -0      jakarta-slide/proposals/jcrri/src/javax/jcr/Value.java
  
  Index: Value.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/proposals/jcrri/src/javax/jcr/Value.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Value.java        1 Mar 2003 06:56:06 -0000       1.1
  +++ Value.java        18 Mar 2003 15:06:02 -0000      1.2
  @@ -16,6 +16,7 @@
    * can be used whithout knowing the exact type (string, double, stream etc.)
    *
    * @author ppiegaze
  + * @author Stefan Guggisberg
    */
   public interface Value {
   
  
  
  
  1.2       +4 -4      jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/Test.java
  
  Index: Test.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/Test.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Test.java 1 Mar 2003 06:56:06 -0000       1.1
  +++ Test.java 18 Mar 2003 15:06:03 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/TestServer.java
  
  Index: TestServer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/TestServer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestServer.java   1 Mar 2003 06:56:06 -0000       1.1
  +++ TestServer.java   18 Mar 2003 15:06:03 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +8 -7      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ContentNode.java
  
  Index: ContentNode.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ContentNode.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContentNode.java  1 Mar 2003 06:56:06 -0000       1.1
  +++ ContentNode.java  18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,6 +69,7 @@
   import javax.jcr.*;
   import java.util.ArrayList;
   import java.util.Iterator;
  +import java.util.Collections;
   
   import org.apache.log4j.Logger;
   
  @@ -266,7 +267,7 @@
           children.addAll(propertyNames);
           children.addAll(nodeNames);
   
  -        return new IteratorHelper(children.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(children).iterator());
       }
   
       /**
  @@ -358,7 +359,7 @@
           }
   
        // simulate semantics of predefined objectclasses
  -        // jcroc:File, jcroc:Folder and jcroc:HierarchyNode
  +        // jcroc:File, jcroc:Folder and jcroc:HierarchyElement
   
           // @todo implement proper objectclass support
           if (objectClasses != null) {
  
  
  
  1.2       +8 -7      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementImpl.java
  
  Index: ElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ElementImpl.java  1 Mar 2003 06:56:06 -0000       1.1
  +++ ElementImpl.java  18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -64,6 +64,7 @@
   
   import javax.jcr.*;
   import java.util.ArrayList;
  +import java.util.Collections;
   
   import org.apache.log4j.Logger;
   import org.apache.slide.jcr.util.PathUtil;
  @@ -365,7 +366,7 @@
               }
           }
   
  -        return new IteratorHelper(parents.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(parents).iterator());
       }
   
       /**
  @@ -385,7 +386,7 @@
   
           // @todo implement getPaths(), e.g. resolve hardlinks
   
  -        return new IteratorHelper(paths.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(paths).iterator());
       }
   
       /**
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementListener.java
  
  Index: ElementListener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementListener.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ElementListener.java      1 Mar 2003 06:56:06 -0000       1.1
  +++ ElementListener.java      18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +8 -7      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementManager.java
  
  Index: ElementManager.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementManager.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ElementManager.java       1 Mar 2003 06:56:06 -0000       1.1
  +++ ElementManager.java       18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -70,6 +70,7 @@
   import java.util.Map;
   import java.util.ArrayList;
   import java.util.Iterator;
  +import java.util.Collections;
   
   import org.apache.commons.collections.ReferenceMap;
   import org.apache.log4j.Logger;
  @@ -97,7 +98,7 @@
    * In this JCR API implementation, an element only knows about it's direct
    * descendants. In order to resolve an absolute path, the 
<code>ElementManager</code>
    * calls the methods of the <code>ElementManagerSupport</code> interface on the
  - * parent of the requested element. 
  + * parent of the requested element.
    *
    * @see ElementManagerSupport
    * @see HierarchyNode
  @@ -289,7 +290,7 @@
               }
           }
   
  -        return new IteratorHelper(children.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(children).iterator());
       }
   
       /**
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementManagerSupport.java
  
  Index: ElementManagerSupport.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ElementManagerSupport.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ElementManagerSupport.java        1 Mar 2003 06:56:06 -0000       1.1
  +++ ElementManagerSupport.java        18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +7 -6      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/HierarchyNode.java
  
  Index: HierarchyNode.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/HierarchyNode.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- HierarchyNode.java        1 Mar 2003 06:56:08 -0000       1.1
  +++ HierarchyNode.java        18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -72,6 +72,7 @@
   import javax.jcr.*;
   import java.util.ArrayList;
   import java.util.Iterator;
  +import java.util.Collections;
   import java.io.OutputStream;
   import java.io.IOException;
   
  @@ -343,7 +344,7 @@
           children.addAll(propertyNames);
           children.addAll(nodeNames);
   
  -        return new IteratorHelper(children.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(children).iterator());
       }
   
       /**
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/IteratorHelper.java
  
  Index: IteratorHelper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/IteratorHelper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IteratorHelper.java       1 Mar 2003 06:56:08 -0000       1.1
  +++ IteratorHelper.java       18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +117 -82   
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/NodeImpl.java
  
  Index: NodeImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/NodeImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NodeImpl.java     1 Mar 2003 06:56:08 -0000       1.1
  +++ NodeImpl.java     18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -86,7 +86,7 @@
   
       static final String OC_FILE = "jcroc:File";
       static final String OC_FOLDER = "jcroc:Folder";
  -    static final String OC_HIERARCHY_NODE = "jcroc:HierarchyNode";
  +    static final String OC_HIERARCHY_NODE = "jcroc:HierarchyElement";
   
       protected final org.jdom.Element domElement;
   
  @@ -428,62 +428,62 @@
               return null;
           }
   
  -     if (objectclasses.isEmpty()) {
  -         importedNode = parent.addNode(nodeName, adjustName);
  -     } else {
  -         String[] ocNames = new String[objectclasses.size()];
  -         objectclasses.toArray(ocNames);
  -         importedNode = parent.addNode(nodeName, (String[]) 
objectclasses.toArray(ocNames), adjustName);
  -     }
  +        if (objectclasses.isEmpty()) {
  +            importedNode = parent.addNode(nodeName, adjustName);
  +        } else {
  +            String[] ocNames = new String[objectclasses.size()];
  +            objectclasses.toArray(ocNames);
  +            importedNode = parent.addNode(nodeName, (String[]) 
objectclasses.toArray(ocNames), adjustName);
  +        }
   
           boolean succeeded = false;
           if (importedNode instanceof ElementImpl) {
               ((ElementImpl) importedNode).notifyStartModification();
           }
   
  -     try {
  -         // import sub nodes
  -         Iterator iter = 
nodeElement.getChildren(Serializer.NODE_ELEMENT).iterator();
  -         while (iter.hasNext()) {
  -             org.jdom.Element childElement = (org.jdom.Element) iter.next();
  -             importNode(importedNode, childElement, adjustName);
  -         }
  -
  -         // import properties
  -         iter = nodeElement.getChildren(Serializer.PROPERTY_ELEMENT).iterator();
  -         while (iter.hasNext()) {
  -             org.jdom.Element childElement = (org.jdom.Element) iter.next();
  -             String propName = 
childElement.getAttributeValue(Serializer.NAME_ATTRIBUTE);
  -             // the property could already be there due to objectclass definitions
  -             Property prop = null;
  -             if (importedNode.hasProperty(propName)) {
  -                 prop = importedNode.getProperty(propName);
  -             } else {
  -                 prop = importedNode.addProperty(propName, adjustName);
  -             }
  -
  -             org.jdom.filter.Filter filter = new 
org.jdom.filter.ContentFilter(org.jdom.filter.ContentFilter.TEXT |
  -                     org.jdom.filter.ContentFilter.CDATA);
  -             List content = childElement.getContent(filter);
  -             if (!content.isEmpty()) {
  -                 String type = 
childElement.getAttributeValue(Serializer.TYPE_ATTRIBUTE);
  -                 String textValue = childElement.getTextTrim();
  -                 Value val = Deserializer.readValue(textValue, type);
  -                 if (val != null) {
  -                     prop.setValue(val);
  -                 }
  -             }
  -         }
  -         succeeded = true;
  -     } finally {
  -         if (importedNode instanceof ElementImpl) {
  -             if (succeeded) {
  -                 ((ElementImpl) importedNode).notifyEndModification();
  -             } else {
  -                 ((ElementImpl) importedNode).notifyCancelModification();
  -             }
  -         }
  -     }
  +        try {
  +            // import sub nodes
  +            Iterator iter = 
nodeElement.getChildren(Serializer.NODE_ELEMENT).iterator();
  +            while (iter.hasNext()) {
  +                org.jdom.Element childElement = (org.jdom.Element) iter.next();
  +                importNode(importedNode, childElement, adjustName);
  +            }
  +
  +            // import properties
  +            iter = nodeElement.getChildren(Serializer.PROPERTY_ELEMENT).iterator();
  +            while (iter.hasNext()) {
  +                org.jdom.Element childElement = (org.jdom.Element) iter.next();
  +                String propName = 
childElement.getAttributeValue(Serializer.NAME_ATTRIBUTE);
  +                // the property could already be there due to objectclass 
definitions
  +                Property prop = null;
  +                if (importedNode.hasProperty(propName)) {
  +                    prop = importedNode.getProperty(propName);
  +                } else {
  +                    prop = importedNode.addProperty(propName, adjustName);
  +                }
  +
  +                org.jdom.filter.Filter filter = new 
org.jdom.filter.ContentFilter(org.jdom.filter.ContentFilter.TEXT |
  +                        org.jdom.filter.ContentFilter.CDATA);
  +                List content = childElement.getContent(filter);
  +                if (!content.isEmpty()) {
  +                    String type = 
childElement.getAttributeValue(Serializer.TYPE_ATTRIBUTE);
  +                    String textValue = childElement.getTextTrim();
  +                    Value val = Deserializer.readValue(textValue, type);
  +                    if (val != null) {
  +                        prop.setValue(val);
  +                    }
  +                }
  +            }
  +            succeeded = true;
  +        } finally {
  +            if (importedNode instanceof ElementImpl) {
  +                if (succeeded) {
  +                    ((ElementImpl) importedNode).notifyEndModification();
  +                } else {
  +                    ((ElementImpl) importedNode).notifyCancelModification();
  +                }
  +            }
  +        }
           return importedNode;
       }
   
  @@ -789,7 +789,7 @@
                   notifyCancelModification();
               }
           }
  -        return new IteratorHelper(properties.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(properties).iterator());
       }
   
       /**
  @@ -894,7 +894,7 @@
               log.error("error while searching properties of " + path, e);
               // fall through
           }
  -        return new IteratorHelper(matches.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(matches).iterator());
       }
   
       /**
  @@ -951,7 +951,7 @@
               return elemMgr.getChildElements(path);
           } catch (RepositoryException e) {
               log.error("failed to retrieve children of " + path, e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -966,7 +966,7 @@
           } catch (RepositoryException e) {
               log.error("error while traversing children of " + path, e);
           }
  -        return new IteratorHelper(elements.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(elements).iterator());
       }
   
       /**
  @@ -995,7 +995,7 @@
           } catch (RepositoryException e) {
               log.error("error while traversing children nodes of " + path, e);
           }
  -        return new IteratorHelper(nodes.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(nodes).iterator());
       }
   
       /**
  @@ -1009,7 +1009,7 @@
           } catch (RepositoryException e) {
               log.error("error while traversing child nodes of " + path, e);
           }
  -        return new IteratorHelper(nodes.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(nodes).iterator());
       }
   
       /**
  @@ -1023,7 +1023,7 @@
           } catch (RepositoryException e) {
               log.error("error while traversing children properties of " + path, e);
           }
  -        return new IteratorHelper(properties.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(properties).iterator());
       }
   
       /**
  @@ -1271,18 +1271,25 @@
           try {
               while (iter.hasNext()) {
                   Object o = iter.next();
  +                String name = null;
  +                String[] objectClasses = null;
                   if (o instanceof String) {
  -                    String name = (String) o;
  -                    nodes.add(addNode(name));
  -                } else if (o instanceof String[]) {
  +                    name = (String) o;
  +                } else if (o instanceof String[] && ((String[]) o).length > 0) {
                       String[] args = (String[]) o;
  -                    if (args.length > 0) {
  -                        String[] objectClasses = new String[args.length - 1];
  -                        if (args.length > 1) {
  -                            System.arraycopy(args, 1, objectClasses, 0, 
objectClasses.length);
  -                        }
  -                        nodes.add(addNode(args[0], objectClasses));
  +                    name = args[0];
  +                    if (args.length > 1) {
  +                        objectClasses = new String[args.length - 1];
  +                        System.arraycopy(args, 1, objectClasses, 0, 
objectClasses.length);
                       }
  +                } else {
  +                    log.error("invalid argument type: " + o.getClass());
  +                    throw new RepositoryException("invalid argument type: " + 
o.getClass());
  +                }
  +                if (objectClasses != null) {
  +                    nodes.add(addNode(name, objectClasses));
  +                } else {
  +                    nodes.add(addNode(name));
                   }
               }
               succeeded = true;
  @@ -1294,7 +1301,7 @@
                   notifyCancelModification();
               }
           }
  -        return new IteratorHelper(nodes.iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(nodes).iterator());
       }
   
       /**
  @@ -1314,14 +1321,42 @@
           notifyStartModification();
           try {
               while (iter.hasNext()) {
  -                Object[] args = (Object[]) iter.next();
  -                String name = (String) args[0];
  +                Object o = iter.next();
  +                String name = null;
  +                Value value = null;
  +                String type = null;
  +                if (o instanceof String) {
  +                    name = (String) o;
  +                } else if (o instanceof Object[] && ((Object[]) o).length > 0) {
  +                    Object[] args = (Object[]) iter.next();
  +                    name = (String) args[0];
  +                    if (args.length > 1) {
  +                        try {
  +                            value = (Value) args[1];
  +                        } catch (ClassCastException cce) {
  +                            log.error("invalid type for 'value' argument: " + 
args[1].getClass());
  +                            throw new RepositoryException("invalid type for 'value' 
argument: " + args[1].getClass());
  +                        }
  +                    }
  +                    if (args.length > 2) {
  +                        type = (String) args[2];
  +                        try {
  +                            type = (String) args[2];
  +                        } catch (ClassCastException cce) {
  +                            log.error("invalid type for 'type' argument: " + 
args[2].getClass());
  +                            throw new RepositoryException("invalid type for 'type' 
argument: " + args[2].getClass());
  +                        }
  +                    }
  +                } else {
  +                    log.error("invalid argument type: " + o.getClass());
  +                    throw new RepositoryException("invalid argument type: " + 
o.getClass());
  +                }
                   try {
  -                    Value value = (Value) args[1];
  -                    properties.add(addProperty(name, value));
  -                } catch (ClassCastException cce) {
  -                    log.error("invalid value for property " + name, cce);
  -                    throw new ValueFormatException("invalid value for property " + 
name, cce);
  +                    if (value == null) {
  +                        properties.add(addProperty(name));
  +                    } else {
  +                        properties.add(addProperty(name, value));
  +                    }
                   } catch (ParentChildMismatchException pcme) {
                       log.error("failed to add property", pcme);
                       throw new RepositoryException("failed to add property", pcme);
  @@ -1339,7 +1374,7 @@
                   notifyCancelModification();
               }
           }
  -        return new IteratorHelper(properties.iterator());
  +        return new 
IteratorHelper(Collections.unmodifiableList(properties).iterator());
       }
   
       /**
  @@ -1487,7 +1522,7 @@
        */
       public ObjectClassIterator getObjectClasses()
               throws UnsupportedRepositoryOperationException {
  -        return new IteratorHelper(new ArrayList(ocs).iterator());
  +        return new IteratorHelper(Collections.unmodifiableList(ocs).iterator());
       }
   
       /**
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ObjectClassImpl.java
  
  Index: ObjectClassImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/ObjectClassImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ObjectClassImpl.java      1 Mar 2003 06:56:08 -0000       1.1
  +++ ObjectClassImpl.java      18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/PasswordCredentials.java
  
  Index: PasswordCredentials.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/PasswordCredentials.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PasswordCredentials.java  1 Mar 2003 06:56:08 -0000       1.1
  +++ PasswordCredentials.java  18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +6 -6      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/PropertyImpl.java
  
  Index: PropertyImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/PropertyImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PropertyImpl.java 1 Mar 2003 06:56:08 -0000       1.1
  +++ PropertyImpl.java 18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -138,7 +138,7 @@
        * @see ElementManagerSupport#getChildElementNames()
        */
       public StringIterator getChildElementNames() {
  -        return new IteratorHelper(new ArrayList().iterator());
  +        return new IteratorHelper(Collections.EMPTY_LIST.iterator());
       }
   
       /**
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RepositoryFactory.java
  
  Index: RepositoryFactory.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RepositoryFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RepositoryFactory.java    1 Mar 2003 06:56:08 -0000       1.1
  +++ RepositoryFactory.java    18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RepositoryImpl.java
  
  Index: RepositoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RepositoryImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RepositoryImpl.java       1 Mar 2003 06:56:08 -0000       1.1
  +++ RepositoryImpl.java       18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RootContentNode.java
  
  Index: RootContentNode.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/RootContentNode.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RootContentNode.java      1 Mar 2003 06:56:08 -0000       1.1
  +++ RootContentNode.java      18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/TicketImpl.java
  
  Index: TicketImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/core/TicketImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TicketImpl.java   1 Mar 2003 06:56:08 -0000       1.1
  +++ TicketImpl.java   18 Mar 2003 15:06:04 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystem.java
  
  Index: FileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystem.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FileSystem.java   1 Mar 2003 06:56:08 -0000       1.1
  +++ FileSystem.java   18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystemException.java
  
  Index: FileSystemException.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystemException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FileSystemException.java  1 Mar 2003 06:56:08 -0000       1.1
  +++ FileSystemException.java  18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystemPathUtil.java
  
  Index: FileSystemPathUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/FileSystemPathUtil.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FileSystemPathUtil.java   1 Mar 2003 06:56:08 -0000       1.1
  +++ FileSystemPathUtil.java   18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.3       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/dav/DavFileSystem.java
  
  Index: DavFileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/dav/DavFileSystem.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DavFileSystem.java        15 Mar 2003 18:05:26 -0000      1.2
  +++ DavFileSystem.java        18 Mar 2003 15:06:05 -0000      1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/dav/DavResourceOutputStream.java
  
  Index: DavResourceOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/dav/DavResourceOutputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DavResourceOutputStream.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ DavResourceOutputStream.java      18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/local/FileUtil.java
  
  Index: FileUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/local/FileUtil.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FileUtil.java     1 Mar 2003 06:56:09 -0000       1.1
  +++ FileUtil.java     18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/local/LocalFileSystem.java
  
  Index: LocalFileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/fs/local/LocalFileSystem.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LocalFileSystem.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ LocalFileSystem.java      18 Mar 2003 15:06:05 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/AccessControlProxy.java
  
  Index: AccessControlProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/AccessControlProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AccessControlProxy.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ AccessControlProxy.java   18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/ElementProxy.java
  
  Index: ElementProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/ElementProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ElementProxy.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ ElementProxy.java 18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/IteratorHelper.java
  
  Index: IteratorHelper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/IteratorHelper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IteratorHelper.java       1 Mar 2003 06:56:09 -0000       1.1
  +++ IteratorHelper.java       18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +12 -12    
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/NodeProxy.java
  
  Index: NodeProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/NodeProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NodeProxy.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ NodeProxy.java    18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -74,7 +74,7 @@
   import java.io.IOException;
   import java.util.List;
   import java.util.Calendar;
  -import java.util.ArrayList;
  +import java.util.Collections;
   import java.rmi.RemoteException;
   
   /**
  @@ -612,7 +612,7 @@
               return new IteratorHelper(rmtNode.findProperties(new 
SerializableValue(value)));
           } catch (RemoteException e) {
               log.error("failed to find properties", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -678,7 +678,7 @@
               return new IteratorHelper(rmtNode.getElements());
           } catch (RemoteException e) {
               log.error("failed to get elements", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -690,7 +690,7 @@
               return new IteratorHelper(rmtNode.getElements(depth));
           } catch (RemoteException e) {
               log.error("failed to get elements", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -716,7 +716,7 @@
               return new IteratorHelper(rmtNode.getNodes());
           } catch (RemoteException e) {
               log.error("failed to get nodes", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -728,7 +728,7 @@
               return new IteratorHelper(rmtNode.getNodes(depth));
           } catch (RemoteException e) {
               log.error("failed to get nodes", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  @@ -740,7 +740,7 @@
               return new IteratorHelper(rmtNode.getProperties());
           } catch (RemoteException e) {
               log.error("failed to get properties", e);
  -            return new IteratorHelper(new ArrayList().iterator());
  +            return new IteratorHelper(Collections.EMPTY_LIST.iterator());
           }
       }
   
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/PropertyProxy.java
  
  Index: PropertyProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/PropertyProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PropertyProxy.java        1 Mar 2003 06:56:09 -0000       1.1
  +++ PropertyProxy.java        18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/ProxyFactory.java
  
  Index: ProxyFactory.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/ProxyFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProxyFactory.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ ProxyFactory.java 18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/QueryProxy.java
  
  Index: QueryProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/QueryProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- QueryProxy.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ QueryProxy.java   18 Mar 2003 15:06:06 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/RemoteRepositoryFactory.java
  
  Index: RemoteRepositoryFactory.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/RemoteRepositoryFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteRepositoryFactory.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteRepositoryFactory.java      18 Mar 2003 15:06:07 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/RepositoryProxy.java
  
  Index: RepositoryProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/RepositoryProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RepositoryProxy.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ RepositoryProxy.java      18 Mar 2003 15:06:07 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/TicketProxy.java
  
  Index: TicketProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/TicketProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TicketProxy.java  1 Mar 2003 06:56:09 -0000       1.1
  +++ TicketProxy.java  18 Mar 2003 15:06:07 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/VersionSelectorProxy.java
  
  Index: VersionSelectorProxy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/client/VersionSelectorProxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- VersionSelectorProxy.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ VersionSelectorProxy.java 18 Mar 2003 15:06:07 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteElementVisitorImpl.java
  
  Index: RemoteElementVisitorImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteElementVisitorImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteElementVisitorImpl.java     1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteElementVisitorImpl.java     18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteInputStreamImpl.java
  
  Index: RemoteInputStreamImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteInputStreamImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteInputStreamImpl.java        1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteInputStreamImpl.java        18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteOutputStreamImpl.java
  
  Index: RemoteOutputStreamImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/RemoteOutputStreamImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteOutputStreamImpl.java       1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteOutputStreamImpl.java       18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableElementVisitor.java
  
  Index: SerializableElementVisitor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableElementVisitor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableElementVisitor.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableElementVisitor.java   18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableInputStream.java
  
  Index: SerializableInputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableInputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableInputStream.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableInputStream.java      18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableIterator.java
  
  Index: SerializableIterator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableIterator.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableIterator.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableIterator.java 18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableNodeDefinition.java
  
  Index: SerializableNodeDefinition.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableNodeDefinition.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableNodeDefinition.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableNodeDefinition.java   18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableOutputStream.java
  
  Index: SerializableOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableOutputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableOutputStream.java     1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableOutputStream.java     18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializablePropertyDefinition.java
  
  Index: SerializablePropertyDefinition.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializablePropertyDefinition.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializablePropertyDefinition.java       1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializablePropertyDefinition.java       18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableValue.java
  
  Index: SerializableValue.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/SerializableValue.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SerializableValue.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ SerializableValue.java    18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/Wrapper.java
  
  Index: Wrapper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/common/Wrapper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Wrapper.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ Wrapper.java      18 Mar 2003 15:06:08 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteAccessControl.java
  
  Index: RemoteAccessControl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteAccessControl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteAccessControl.java  1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteAccessControl.java  18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteContentPackage.java
  
  Index: RemoteContentPackage.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteContentPackage.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteContentPackage.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteContentPackage.java 18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteElement.java
  
  Index: RemoteElement.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteElement.java        1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteElement.java        18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteElementVisitor.java
  
  Index: RemoteElementVisitor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteElementVisitor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteElementVisitor.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteElementVisitor.java 18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +9 -9      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteFilter.java
  
  Index: RemoteFilter.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteFilter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteFilter.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteFilter.java 18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,7 +69,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteInputStream.java
  
  Index: RemoteInputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteInputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteInputStream.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteInputStream.java    18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteNode.java
  
  Index: RemoteNode.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteNode.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteNode.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteNode.java   18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObjectClass.java
  
  Index: RemoteObjectClass.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObjectClass.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteObjectClass.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteObjectClass.java    18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObjectClassRegistry.java
  
  Index: RemoteObjectClassRegistry.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObjectClassRegistry.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteObjectClassRegistry.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteObjectClassRegistry.java    18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObservation.java
  
  Index: RemoteObservation.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteObservation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteObservation.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteObservation.java    18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteOutputStream.java
  
  Index: RemoteOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteOutputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteOutputStream.java   1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteOutputStream.java   18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteProperty.java
  
  Index: RemoteProperty.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteProperty.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteProperty.java       1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteProperty.java       18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteQuery.java
  
  Index: RemoteQuery.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteQuery.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteQuery.java  1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteQuery.java  18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteRepository.java
  
  Index: RemoteRepository.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteRepository.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteRepository.java     1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteRepository.java     18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteTicket.java
  
  Index: RemoteTicket.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteTicket.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteTicket.java 1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteTicket.java 18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteVersionSelector.java
  
  Index: RemoteVersionSelector.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteVersionSelector.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteVersionSelector.java        1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteVersionSelector.java        18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteXAResource.java
  
  Index: RemoteXAResource.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/rmi/RemoteXAResource.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteXAResource.java     1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteXAResource.java     18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteAccessControlImpl.java
  
  Index: RemoteAccessControlImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteAccessControlImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteAccessControlImpl.java      1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteAccessControlImpl.java      18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteElementImpl.java
  
  Index: RemoteElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteElementImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteElementImpl.java    1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteElementImpl.java    18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteFactory.java
  
  Index: RemoteFactory.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteFactory.java        1 Mar 2003 06:56:09 -0000       1.1
  +++ RemoteFactory.java        18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteNodeImpl.java
  
  Index: RemoteNodeImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteNodeImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteNodeImpl.java       1 Mar 2003 06:56:10 -0000       1.1
  +++ RemoteNodeImpl.java       18 Mar 2003 15:06:11 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemotePropertyImpl.java
  
  Index: RemotePropertyImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemotePropertyImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemotePropertyImpl.java   1 Mar 2003 06:56:10 -0000       1.1
  +++ RemotePropertyImpl.java   18 Mar 2003 15:06:12 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteQueryImpl.java
  
  Index: RemoteQueryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteQueryImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteQueryImpl.java      1 Mar 2003 06:56:10 -0000       1.1
  +++ RemoteQueryImpl.java      18 Mar 2003 15:06:12 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteRepositoryImpl.java
  
  Index: RemoteRepositoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteRepositoryImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteRepositoryImpl.java 1 Mar 2003 06:56:10 -0000       1.1
  +++ RemoteRepositoryImpl.java 18 Mar 2003 15:06:12 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteTicketImpl.java
  
  Index: RemoteTicketImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteTicketImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteTicketImpl.java     1 Mar 2003 06:56:10 -0000       1.1
  +++ RemoteTicketImpl.java     18 Mar 2003 15:06:12 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteVersionSelectorImpl.java
  
  Index: RemoteVersionSelectorImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server/RemoteVersionSelectorImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RemoteVersionSelectorImpl.java    1 Mar 2003 06:56:10 -0000       1.1
  +++ RemoteVersionSelectorImpl.java    18 Mar 2003 15:06:12 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/ChildrenCollector.java
  
  Index: ChildrenCollector.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/ChildrenCollector.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ChildrenCollector.java    1 Mar 2003 06:56:10 -0000       1.1
  +++ ChildrenCollector.java    18 Mar 2003 15:06:13 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/Deserializer.java
  
  Index: Deserializer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/Deserializer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Deserializer.java 1 Mar 2003 06:56:10 -0000       1.1
  +++ Deserializer.java 18 Mar 2003 15:06:13 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/MalformedPathException.java
  
  Index: MalformedPathException.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/MalformedPathException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MalformedPathException.java       1 Mar 2003 06:56:10 -0000       1.1
  +++ MalformedPathException.java       18 Mar 2003 15:06:13 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/PathUtil.java
  
  Index: PathUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/PathUtil.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PathUtil.java     1 Mar 2003 06:56:10 -0000       1.1
  +++ PathUtil.java     18 Mar 2003 15:06:13 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +5 -5      
jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/Serializer.java
  
  Index: Serializer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/util/Serializer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Serializer.java   1 Mar 2003 06:56:10 -0000       1.1
  +++ Serializer.java   18 Mar 2003 15:06:13 -0000      1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to