Author: rhauch
Date: 2008-05-19 16:26:50 -0400 (Mon, 19 May 2008)
New Revision: 179
Modified:
branches/federation/dna-spi/src/main/java/org/jboss/dna/spi/graph/PropertyType.java
Log:
DNA-67: Create graph API for federation engine
http://jira.jboss.org/jira/browse/DNA-67
Corrected the class defined for the PropertyType.REFERENCE.
Modified:
branches/federation/dna-spi/src/main/java/org/jboss/dna/spi/graph/PropertyType.java
===================================================================
---
branches/federation/dna-spi/src/main/java/org/jboss/dna/spi/graph/PropertyType.java 2008-05-19
20:25:53 UTC (rev 178)
+++
branches/federation/dna-spi/src/main/java/org/jboss/dna/spi/graph/PropertyType.java 2008-05-19
20:26:50 UTC (rev 179)
@@ -25,7 +25,6 @@
import java.net.URI;
import java.util.Calendar;
import java.util.Comparator;
-import java.util.UUID;
import net.jcip.annotations.Immutable;
import org.jboss.dna.common.util.StringUtil;
import org.jboss.dna.spi.SpiI18n;
@@ -46,7 +45,7 @@
BOOLEAN("Boolean", PropertyValues.BOOLEAN_COMPARATOR, Boolean.class),
NAME("Name", PropertyValues.NAME_COMPARATOR, Name.class),
PATH("Path", PropertyValues.PATH_COMPARATOR, Path.class),
- REFERENCE("Reference", PropertyValues.REFERENCE_COMPARATOR, UUID.class),
+ REFERENCE("Reference", PropertyValues.REFERENCE_COMPARATOR,
Reference.class),
URI("URI", PropertyValues.URI_COMPARATOR, URI.class),
UNDEFINED("undefined", PropertyValues.UNDEFINED_COMPARATOR,
Comparable.class);