try {
byte[] decodedApiKeyBytes = Base64.decode(fullApiKey.getEncodedApiKeyString());
byte[] decryptedApiKeyBytes = securityManager.decrypt(decodedApiKeyBytes);
fullApiKeyString = new String(decryptedApiKeyBytes);
} catch (IOException e) {
throw new EveManageSecurityException(e);
}
if ("CHARACTER".equals(level)) {
proceedIndustryJobImport(eveApiGateway.getCharacterIndustryJobs(fullApiKeyString, fullApiKey.getApiKeyUserID(), characterID), attachedCharacterID, sharingLevel, userKey);
} else {