Adaptations due to Vaadin 8 merge

Signed-off-by: Ammar Bikic <ammar.bikic@bosch.io>
This commit is contained in:
Ammar Bikic
2020-08-31 21:33:32 +02:00
parent a6404fdb83
commit 8e90ffd95e
25 changed files with 51 additions and 33 deletions

View File

@@ -8,11 +8,15 @@
*/
package org.eclipse.hawkbit.repository.builder;
public abstract class AbstractBaseEntityBuilder {
import org.eclipse.hawkbit.repository.Identifiable;
public abstract class AbstractBaseEntityBuilder implements Identifiable<Long> {
protected Long id;
@Override
public Long getId() {
return id;
}
}