NullPointerException when deleting a property of type REFERENCE
---------------------------------------------------------------

         Key: JCR-420
         URL: http://issues.apache.org/jira/browse/JCR-420
     Project: Jackrabbit
        Type: Bug

  Components: rmi  
    Versions: 1.0    
    Reporter: Michael Frericks
    Priority: Blocker


In method org.apache.jackrabbit.rmi.value.SerialValueFactory#createValue a NPE 
is thrown when parameter value is null.

Solution:

Change:

   public final Value createValue(Node value) throws RepositoryException {
        return createValue(value.getUUID(), PropertyType.REFERENCE);
    }

to

   public final Value createValue(Node value) throws RepositoryException {
        if (value == null) {
           return null;
        }
        
        return createValue(value.getUUID(), PropertyType.REFERENCE);
    }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to