* @param mapping URL to retrieve mapping configuration file.
* @return JDO Mapping configuration.
* @deprecated Pass mapping URL's to createDatabase() methods instead.
*/
public static Mapping createMapping(final String mapping) {
Mapping mapConf = new Mapping();
mapConf.setHref(mapping);
return mapConf;
}