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

com.xlrit.gears.base.repository.UserRepository Maven / Gradle / Ivy

There is a newer version: 1.17.5
Show newest version
package com.xlrit.gears.base.repository;

import java.util.List;

import jakarta.persistence.EntityGraph;

import com.xlrit.gears.base.model.User;

public interface UserRepository extends Repository {

	User findById(String id, EntityGraph loadGraph);
	User findByUsername(String username);

	List findAll(EntityGraph loadGraph);
	List findByIds(List ids);

	User create(String id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy