
ru.mynewtons.starter.oauth2.service.RoleService Maven / Gradle / Ivy
The newest version!
package ru.mynewtons.starter.oauth2.service;
import ru.mynewtons.starter.oauth2.domain.Role;
import java.util.List;
public interface RoleService {
List findAll();
Role findRoleById(String id);
Role findRoleByTitle(String title);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy