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

com.xlrit.gears.base.repository.RoleRepository 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 com.xlrit.gears.base.model.Role;

public interface RoleRepository extends Repository {
	List findByUserId(String userId);

	Role create(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy