package egovframework.com.sec.ram.service.impl; import java.util.List; import egovframework.com.sec.ram.service.AuthorRoleManage; import egovframework.com.sec.ram.service.AuthorRoleManageVO; import egovframework.com.sec.ram.service.EgovAuthorRoleManageService; import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl; import javax.annotation.Resource; import org.springframework.stereotype.Service; /** * 권한별 롤관리에 대한 DAO 클래스를 정의한다. * @author 공통서비스 개발팀 이문준 * @since 2009.06.01 * @version 1.0 * @see * *
* << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ------- -------- --------------------------- * 2009.03.11 이문준 최초 생성 * **/ @Service("egovAuthorRoleManageService") public class EgovAuthorRoleManageServiceImpl extends EgovAbstractServiceImpl implements EgovAuthorRoleManageService { @Resource(name="authorRoleManageDAO") private AuthorRoleManageDAO authorRoleManageDAO; /** * 권한 롤 관계정보를 조회 * @param authorRoleManageVO AuthorRoleManageVO * @return AuthorRoleManageVO * @exception Exception */ public AuthorRoleManageVO selectAuthorRole(AuthorRoleManageVO authorRoleManageVO) throws Exception { return authorRoleManageDAO.selectAuthorRole(authorRoleManageVO); } /** * 권한 롤 관계정보 목록 조회 * @param authorRoleManageVO AuthorRoleManageVO * @return List