String accountId = componentSapeAccountProperty.getValue();
String host = componentSapeHostProperty.getValue();
if (StringUtils.isBlank(accountId) || StringUtils.isBlank(host)) {
return false;
}
sape = new Sape(componentSapeAccountProperty.getValue(),
componentSapeHostProperty.getValue(),
Integer.parseInt(componentSapeTimeoutProperty.getValue()),
Integer.parseInt(componentSapeLinksCountProperty.getValue()));
return true;
}