com.devonfw.module.jpa.dataaccess.base.AbstractDao Maven / Gradle / Ivy
package com.devonfw.module.jpa.dataaccess.base;
import com.devonfw.module.basic.common.api.entity.PersistenceEntity;
import com.devonfw.module.jpa.dataaccess.api.Dao;
/**
* Abstract base implementation of {@link Dao} interface.
*
* @param is the generic type of the {@link PersistenceEntity}.
*/
public abstract class AbstractDao> extends AbstractGenericDao
implements Dao {
/**
* The constructor.
*/
public AbstractDao() {
super();
}
}