Examples of ApiCorporationSheetResponse


Examples of lv.odylab.eveapi.parser.method.corporation.sheet.ApiCorporationSheetResponse

    @Override
    @Logging
    @Caching(expiration = Caching.TEN_MINUTES)
    public CorporationSheetDto getCorporationSheet(Long corporationID) throws EveApiException {
        try {
            ApiCorporationSheetResponse response = facade.getCorporationSheet(corporationID);
            ApiCorporationSheetResult apiCorporationSheetResult = response.getResult();
            return mapper.map(apiCorporationSheetResult, CorporationSheetDto.class);
        } catch (ApiErrorException e) {
            logger.warn("Caught ApiErrorException", e.getMessage());
            throw new EveApiException(e);
        } catch (ApiParserException e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.