public List findAll()

in src/main/java/org/openvasp/host/facade/impl/CounterpartyFacadeImpl.java [48:53]


    public List<CounterpartyShortDto> findAll() {
        return service.findAll()
                .stream()
                .map(mapper::toShortDto)
                .collect(Collectors.toList());
    }