fix broken build

This commit is contained in:
anhefti 2020-10-26 14:59:51 +01:00
parent b3f83877f2
commit eeca8bb88a

View file

@ -465,6 +465,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
sebClientConfig.fallbackStartURL); sebClientConfig.fallbackStartURL);
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_FALLBACK_START_URL); SEBClientConfig.ATTR_FALLBACK_START_URL);
} }
@ -477,6 +478,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
sebClientConfig.fallbackTimeout.toString()); sebClientConfig.fallbackTimeout.toString());
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_FALLBACK_TIMEOUT); SEBClientConfig.ATTR_FALLBACK_TIMEOUT);
} }
@ -489,6 +491,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
sebClientConfig.fallbackAttempts.toString()); sebClientConfig.fallbackAttempts.toString());
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_FALLBACK_ATTEMPTS); SEBClientConfig.ATTR_FALLBACK_ATTEMPTS);
} }
@ -501,6 +504,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
sebClientConfig.fallbackAttemptInterval.toString()); sebClientConfig.fallbackAttemptInterval.toString());
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_FALLBACK_ATTEMPT_INTERVAL); SEBClientConfig.ATTR_FALLBACK_ATTEMPT_INTERVAL);
} }
@ -513,6 +517,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
this.clientCredentialService.encrypt(sebClientConfig.fallbackPassword).toString()); this.clientCredentialService.encrypt(sebClientConfig.fallbackPassword).toString());
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_FALLBACK_PASSWORD); SEBClientConfig.ATTR_FALLBACK_PASSWORD);
} }
@ -525,6 +530,7 @@ public class SEBClientConfigDAOImpl implements SEBClientConfigDAO {
this.clientCredentialService.encrypt(sebClientConfig.quitPassword).toString()); this.clientCredentialService.encrypt(sebClientConfig.quitPassword).toString());
} else { } else {
this.additionalAttributesDAO.delete( this.additionalAttributesDAO.delete(
EntityType.SEB_CLIENT_CONFIGURATION,
configId, configId,
SEBClientConfig.ATTR_QUIT_PASSWORD); SEBClientConfig.ATTR_QUIT_PASSWORD);
} }