* Gets the data store object initialized.
* @param conf Configuration.
* @return DataStore created
*/
public DataStore createDataStore(Configuration conf) {
DataStore dsCreated = null;
try {
dsCreated = GoraUtils.createSpecificDataStore(conf, getDatastoreClass(),
getKeyClass(), getPersistentClass());
} catch (GoraException e) {
getLogger().error("Error creating data store.");