list = new ArrayList<Object>();
}
if (configuration.getBoolean(root + EXPLORATION_OBJECTS)) {
final DeploymentType deploymentType = DeploymentType.lookup(configuration.getString(SystemConstants.DEPLOYMENT_TYPE_KEY));
if (deploymentType.isExploring()) {
list.add(new ObjectFixtureService());
}
}
final Object[] array = list.toArray(new Object[list.size()]);
return array;
}