while (ctci.hasNext()) {
GenericValue productConfigConfig = ctci.next();
String tempConfigId = productConfigConfig.getString("configId");
try {
List tempResult = delegator.findByAnd("ProductConfigConfig", UtilMisc.toMap("configId",tempConfigId));
if (tempResult.size() == selectedOptionSize && configsToCheck.containsAll(tempResult)) {
configWrapper.configId = tempConfigId;
Debug.logInfo("Existing configuration found with configId:"+ tempConfigId, module);
return;
}
} catch (GenericEntityException e) {