Assert.notNull(moduleLocationResolver, "moduleLocationResolver cannot be null");
this.moduleLocationResolver = moduleLocationResolver;
}
public boolean execute(CommandState commandState) {
CommandPropertyValue suppliedValue = commandState.getProperties().get(DIRECTORY_NAME);
//we can call this because the getCommandDefinition contract demands this
Assert.notNull(suppliedValue);
String candidateValue = suppliedValue.getValue();
List<Resource> locations = moduleLocationResolver.getApplicationModuleClassLocations(candidateValue);
boolean exists = false;