}
@Override
public ServiceResponse removeAttributes(List<String> names) {
ConfigEntity config = getDao().getConfigDao().getConfig();
config.removeAttributes(names);
getDao().getConfigDao().save(config);
return ServiceResponse.createSuccessResponse(
Messages.get("success"));
}