package com.nokia.service.Flow; import com.nokia.vo.FlowRoleVo; import com.nokia.vo.FlowUserVo; import java.util.List; public interface FlowService { List findRoleList(String username); List findToPage(); FlowUserVo getByLoginId(String loginId); FlowUserVo getByUserId(Integer userId); List findRoleIdByUserId(Integer userId); List findUserIdByRoleId(Integer roleId); List findAuthorizedUser(String loginId, Integer roleId, String username); }