From 0709b037a7a418e39a74372956e6aa14b5e997fc Mon Sep 17 00:00:00 2001 From: Peter Hormanns Date: Wed, 27 Oct 2021 20:50:17 +0200 Subject: [PATCH] new release 1.0.3 --- cli/pom.xml | 4 ++-- cust-services/pom.xml | 2 +- .../hsadmin/service/customer/SEPADirectDebitService.java | 7 +++---- database-services/pom.xml | 2 +- db-migration/pom.xml | 2 +- framework/pom.xml | 2 +- ldap-services/pom.xml | 2 +- pom.xml | 4 ++-- web/pom.xml | 2 +- 9 files changed, 13 insertions(+), 14 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index b40d169..b024c88 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ de.hsadmin hsadmin-parent - 1.0.2 + 1.0.3 hsadmin-cli 1.2.0 @@ -17,7 +17,7 @@ de.hsadmin framework - 1.0.2 + ${hsadmin.version} org.apache.xmlrpc diff --git a/cust-services/pom.xml b/cust-services/pom.xml index a64bdc7..8270e4f 100644 --- a/cust-services/pom.xml +++ b/cust-services/pom.xml @@ -6,7 +6,7 @@ de.hsadmin hsadmin-parent - 1.0.2 + 1.0.3 cust-webapp diff --git a/cust-services/src/main/java/de/hsadmin/service/customer/SEPADirectDebitService.java b/cust-services/src/main/java/de/hsadmin/service/customer/SEPADirectDebitService.java index ae5525b..2ab80c3 100644 --- a/cust-services/src/main/java/de/hsadmin/service/customer/SEPADirectDebitService.java +++ b/cust-services/src/main/java/de/hsadmin/service/customer/SEPADirectDebitService.java @@ -8,7 +8,6 @@ import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; -import de.hsadmin.bo.customer.Contact; import de.hsadmin.bo.customer.SEPADirectDebit; import de.hsadmin.common.error.TechnicalException; import de.hsadmin.common.error.UserException; @@ -81,9 +80,9 @@ public class SEPADirectDebitService extends AbstractModule im public void delete(final RequestContext requestContext, final SEPADirectDebitVO criteria) throws UserException, TechnicalException { super.delete(requestContext, criteria); - final List list = QueryBuilder.newBuilder(entityManager, Contact.class).getResultList(criteria); - for (Contact c : list) { - entityManager.remove(c); + final List list = QueryBuilder.newBuilder(entityManager, SEPADirectDebit.class).getResultList(criteria); + for (SEPADirectDebit m : list) { + entityManager.remove(m); } } diff --git a/database-services/pom.xml b/database-services/pom.xml index d7713a7..73efdf5 100644 --- a/database-services/pom.xml +++ b/database-services/pom.xml @@ -5,7 +5,7 @@ de.hsadmin hsadmin-parent - 1.0.1 + 1.0.3 database-webapp diff --git a/db-migration/pom.xml b/db-migration/pom.xml index f9d2c31..275d6ab 100644 --- a/db-migration/pom.xml +++ b/db-migration/pom.xml @@ -4,7 +4,7 @@ de.hsadmin hsadmin-parent - 1.0.2 + 1.0.3 db-migration war diff --git a/framework/pom.xml b/framework/pom.xml index 8dce23a..b781df0 100644 --- a/framework/pom.xml +++ b/framework/pom.xml @@ -6,7 +6,7 @@ de.hsadmin hsadmin-parent - 1.0.2 + 1.0.3 framework jar diff --git a/ldap-services/pom.xml b/ldap-services/pom.xml index d290e81..5991644 100644 --- a/ldap-services/pom.xml +++ b/ldap-services/pom.xml @@ -5,7 +5,7 @@ de.hsadmin hsadmin-parent - 1.0.1 + 1.0.3 ldap-webapp diff --git a/pom.xml b/pom.xml index 1ffbd40..dcb4258 100644 --- a/pom.xml +++ b/pom.xml @@ -6,12 +6,12 @@ de.hsadmin hsadmin-parent pom - 1.0.2 + 1.0.3 HSAdmin Parent Project UTF-8 - 1.0.2 + 1.0.3 8.0.8 4.0.1 4.4.3 diff --git a/web/pom.xml b/web/pom.xml index 0c32fe0..91d6fd4 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -5,7 +5,7 @@ de.hsadmin hsadmin-parent - 1.0.2 + 1.0.3 admin-web