@Override
protected Object executeInternal() throws Exception {
for (String domainToDump : domainsCollection) {
File outputFile = new File(String.format("target/%s.json", domainToDump));
new DumpDomainCommand(this.getService())
.execute(new DumpDomainContext(outputFile, domainToDump));
}
return null;
}