All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy