// non xa ds
propValues.put("driver-class", SimpleValueSupport.wrap("org.hsqldb.jdbcDriver"));
propValues.put("connection-url", SimpleValueSupport.wrap("jdbc:hsqldb:."));
// A metadata type with a null type-mapping, JBAS-6215
MutableCompositeMetaType metadataType = new MutableCompositeMetaType("org.jboss.resource.metadata.mcf.DBMSMetaData", "metadata type");
metadataType.addItem("typeMapping", "The jdbc type mapping", SimpleMetaType.STRING);
HashMap<String, MetaValue> items = new HashMap<String, MetaValue>();
items.put("typeMapping", null);
CompositeValueSupport metadata = new CompositeValueSupport(metadataType, items);
propValues.put("metadata", metadata);