com.devonfw.module.jpa.dataaccess.api.Dao Maven / Gradle / Ivy
package com.devonfw.module.jpa.dataaccess.api;
import com.devonfw.module.basic.common.api.entity.PersistenceEntity;
/**
* This is a simplified variant of {@link GenericDao} for the suggested and common case that you have a {@link Long} as
* {@link PersistenceEntity#getId() primary key}.
*
* @see GenericDao
*
* @param is the generic type of the {@link PersistenceEntity}.
*/
public interface Dao> extends GenericDao {
}