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

com.devonfw.module.jpa.dataaccess.base.AbstractMasterDataDao Maven / Gradle / Ivy

package com.devonfw.module.jpa.dataaccess.base;

import java.util.List;

import com.devonfw.module.basic.common.api.entity.PersistenceEntity;
import com.devonfw.module.jpa.dataaccess.api.MasterDataDao;

/**
 * This is the abstract base implementation of {@link MasterDataDao}.
 *
 * @param  is the generic type of the {@link PersistenceEntity}.
 */
public abstract class AbstractMasterDataDao> extends AbstractDao
    implements MasterDataDao {

  /**
   * The constructor.
   */
  public AbstractMasterDataDao() {

    super();
  }

  @Override
  public List findAll() {

    return super.findAll();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy