You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by st...@apache.org on 2003/06/02 14:33:09 UTC

cvs commit: jakarta-slide/proposals/jcrri/src/org/apache/slide/jcr/remote/server RemotePropertyImpl.java

stefan      2003/06/02 05:33:08

  Modified:    proposals/jcrri/src/javax/jcr Property.java
               proposals/jcrri/src/org/apache/slide/jcr/core
                        PropertyImpl.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/client
                        PropertyProxy.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/rmi
                        RemoteProperty.java
               proposals/jcrri/src/org/apache/slide/jcr/remote/server
                        RemotePropertyImpl.java
  Log:
  #0000 jcr: syncing api changes
  
  Revision  Changes    Path
  1.4       +1 -1      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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Property.java	30 May 2003 13:13:45 -0000	1.3
  +++ Property.java	2 Jun 2003 12:33:08 -0000	1.4
  @@ -547,5 +547,5 @@
        *
        * @return Length (or size) of this value.
        */
  -    public int getLength();
  +    public long getLength();
   }
  
  
  
  1.5       +5 -5      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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PropertyImpl.java	30 May 2003 13:22:36 -0000	1.4
  +++ PropertyImpl.java	2 Jun 2003 12:33:08 -0000	1.5
  @@ -463,7 +463,7 @@
       /**
        * @see Property#getLength
        */
  -    public int getLength() {
  +    public long getLength() {
           Value propVal = getValue();
           if (propVal == null) {
               // @todo should -1 be returned?
  
  
  
  1.4       +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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PropertyProxy.java	30 May 2003 13:22:35 -0000	1.3
  +++ PropertyProxy.java	2 Jun 2003 12:33:08 -0000	1.4
  @@ -369,7 +369,7 @@
       /**
        * @see Property#getLength()
        */
  -    public int getLength() {
  +    public long getLength() {
           try {
               return rmtProp.getLength();
           } catch (RemoteException e) {
  
  
  
  1.4       +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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RemoteProperty.java	30 May 2003 13:22:38 -0000	1.3
  +++ RemoteProperty.java	2 Jun 2003 12:33:08 -0000	1.4
  @@ -207,7 +207,7 @@
       /**
        * @see Property#getLength()
        */
  -    public int getLength() throws RemoteException;
  +    public long getLength() throws RemoteException;
   
       /**
        * @see Property#getOnVersion()
  
  
  
  1.4       +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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RemotePropertyImpl.java	30 May 2003 13:22:39 -0000	1.3
  +++ RemotePropertyImpl.java	2 Jun 2003 12:33:08 -0000	1.4
  @@ -268,7 +268,7 @@
       /**
        * @see Property#getLength()
        */
  -    public int getLength() throws RemoteException {
  +    public long getLength() throws RemoteException {
           return prop.getLength();
       }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org