
de.jball.sonar.l10n.java.rules.squid.ModelServiceSaveAll_java.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-hybris Show documentation
Show all versions of sonar-hybris Show documentation
SonarQube Rules for Hybris
This rule detects usage the saveAll method without parameters of hybris' ModelService. It's use is discouraged.
Noncompliant Code Example
modelService.saveAll(); // NonCompliant
Compliant Solution
modelService.save(item);
modelService.saveAll(itemCollection);
modelService.saveAll(item1, item2);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy