4546474849505152
throws URIGenerationException { String uuid = UUID.randomUUID().toString(); try { return new URI(uuid); } catch (URISyntaxException e) { throw new URIGenerationException(e); } }
4647484950515253
throws URIGenerationException { String uuid = UUID.randomUUID().toString(); try { return new URI("urn:jboss/esb/message/UID#" + uuid); } catch (URISyntaxException e) { throw new URIGenerationException(e); } }