}
private boolean checkSecretOK() throws InterruptException {
for (int i=0;; i++) {
try {
GetCustomersByMsisdnRequest parameters = new GetCustomersByMsisdnRequest();
parameters.setMsisdn(getData().getMsisdn());
GetCustomersByMsisdnResponse response = customerService.getCustomersByMsisdn(parameters);
logger.debug("Received customer data: {}", response.getReturn());
return getData().getSecret().equals(response.getReturn().getSecret());
}
catch(Exception e) {