@Override
@Logging(logArguments = false)
public List<IndustryJobDto> getCorporationIndustryJobs(String apiKey, Long userID, Long characterID) throws EveApiException {
try {
ApiIndustryJobResponse response = facade.getCorporationIndustryJobs(apiKey, userID, characterID);
List<ApiIndustryJobRow> apiIndustryJobRows = response.getResult().getRowset().getRows();
List<IndustryJobDto> industryJobDtos = new ArrayList<IndustryJobDto>();
for (ApiIndustryJobRow apiIndustryJobRow : apiIndustryJobRows) {
industryJobDtos.add(mapper.map(apiIndustryJobRow, IndustryJobDto.class));
}
return industryJobDtos;