*/
public class PreservationActionServiceFactory extends AbstractObjectCreationFactory<PreservationActionService> {
@Override
public PreservationActionService createObject(Attributes arg0) throws Exception {
PreservationActionService service = new PreservationActionService();
String type = arg0.getValue("type");
service.setMigration(!"emulation".equals(type));
return service;
}