All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jball.sonar.l10n.java.rules.squid.ModelServiceSaveAll_java.html Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version

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