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

com.eurodyn.qlack.fuse.aaa.repository.AAARepository Maven / Gradle / Ivy

There is a newer version: 3.8.9
Show newest version
package com.eurodyn.qlack.fuse.aaa.repository;

import com.eurodyn.qlack.common.exception.QDoesNotExistException;
import com.eurodyn.qlack.fuse.aaa.model.AAAModel;
import com.querydsl.core.types.Predicate;
import java.io.Serializable;
import java.text.MessageFormat;
import java.util.List;
import java.util.Optional;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.querydsl.QuerydslPredicateExecutor;
import org.springframework.lang.NonNull;

public interface AAARepository
    extends JpaRepository, QuerydslPredicateExecutor {

  @NonNull
  List findAll(@NonNull Predicate predicate);

  @NonNull
  List findAll(@NonNull Predicate predicate, @NonNull Sort sort);

  default T fetchById(I id) {
    if (id == null) {
      throw new IllegalArgumentException("Null id");
    }
    Optional optional = findById(id);

    return optional.orElseThrow(
        () -> new QDoesNotExistException(MessageFormat
            .format("Entity with Id {0} could not be found.", id)));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy