FlowPropertyDefinitionImpl definition = new FlowPropertyDefinitionImpl(URI, URI.class, FlowActivityPhase.advance, Set.class);
getFlowTranslatorResolver().resolve("", definition);
Set<URI> set = new LinkedHashSet<URI>(Arrays.asList(new URI("http://foo.com"), new URI("http://gg.gov")));
String strV =definition.serialize(set);
assertEquals(strV, "[\"http://foo.com\",\"http://gg.gov\"]");
FlowPropertyProvider flowPropertyProvider = null;
Set<URI> result =(Set<URI>) definition.parse(flowPropertyProvider, strV);
assertTrue(set.containsAll(result));
assertTrue(set.containsAll(set));
}