*/
public class GuiceExtension {
public GuiceExtension(final Morphia morphia, final Injector injector) {
Assert.parameterNotNull(morphia, "morphia");
final MapperOptions options = morphia.getMapper()
.getOptions();
options.setObjectFactory(new GuiceObjectFactory(options.getObjectFactory(), injector));
}