*/
private ListImagesCmd executeListImagesRequest(DockerClient client, Message message) throws DockerException {
LOGGER.debug("Executing Docker Images List Request");
ListImagesCmd listImagesCmd = client.listImagesCmd();
String filter = DockerHelper.getProperty(DockerConstants.DOCKER_FILTER, configuration, message, String.class);
if (filter != null) {
listImagesCmd.withFilter(filter);
}
Boolean showAll = DockerHelper.getProperty(DockerConstants.DOCKER_SHOW_ALL, configuration, message, Boolean.class);
if (showAll != null && showAll) {
listImagesCmd.withShowAll(showAll);
}
return listImagesCmd;
}