Examples of ApiCharacterSheetResult


Examples of lv.odylab.eveapi.parser.method.character.sheet.ApiCharacterSheetResult

    @Logging(logArguments = false)
    @Caching(expiration = Caching.TEN_MINUTES, logArguments = false)
    public CharacterSheetDto getCharacterSheet(String apiKeyString, Long apiKeyUserID, Long characterID) throws EveApiException {
        try {
            ApiCharacterSheetResponse apiResponse = facade.getCharacterSheet(apiKeyString, apiKeyUserID, characterID);
            ApiCharacterSheetResult apiCharacterSheetResult = apiResponse.getResult();
            return mapper.map(apiCharacterSheetResult, CharacterSheetDto.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.