• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
rosewiper / itsm_git star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
itsm_gitserviceimplEgovAuthorManageServiceImpl.java
Download as .zip file
File name
Commit message
Commit date
DATABASE
첫번째 커밋
06-19
service/impl
첫번째 커밋
06-19
src/main
첫번째 커밋
06-19
web
첫번째 커밋
06-19
.gitignore
첫번째 커밋
06-19
pom.xml
첫번째 커밋
06-19
searchQuery.sql
첫번째 커밋
06-19
File name
Commit message
Commit date
AuthorManageDAO.java
첫번째 커밋
06-19
AuthorRoleManageDAO.java
첫번째 커밋
06-19
EgovAuthorManageServiceImpl.java
첫번째 커밋
06-19
EgovAuthorRoleManageServiceImpl.java
첫번째 커밋
06-19
EgovUserDetailsSecurityServiceImpl.java
첫번째 커밋
06-19
rosewiper 06-19 7ef7d0e 첫번째 커밋 UNIX
Raw Open in browser Change history
package egovframework.com.sec.ram.service.impl; import java.util.List; import egovframework.com.sec.ram.service.AuthorManage; import egovframework.com.sec.ram.service.AuthorManageVO; import egovframework.com.sec.ram.service.EgovAuthorManageService; import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl; import javax.annotation.Resource; import org.springframework.stereotype.Service; /** * 권한관리에 관한 ServiceImpl 클래스를 정의한다. * @author 공통서비스 개발팀 이문준 * @since 2009.06.01 * @version 1.0 * @see * * <pre> * << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ------- -------- --------------------------- * 2009.03.11 이문준 최초 생성 * * </pre> */ @Service("egovAuthorManageService") public class EgovAuthorManageServiceImpl extends EgovAbstractServiceImpl implements EgovAuthorManageService { @Resource(name="authorManageDAO") private AuthorManageDAO authorManageDAO; /** * 권한 목록을 조회한다. * @param authorManageVO AuthorManageVO * @return List<AuthorManageVO> * @exception Exception */ public List<AuthorManageVO> selectAuthorList(AuthorManageVO authorManageVO) throws Exception { return authorManageDAO.selectAuthorList(authorManageVO); } /** * 권한을 등록한다. * @param authorManage AuthorManage * @exception Exception */ public void insertAuthor(AuthorManage authorManage) throws Exception { authorManageDAO.insertAuthor(authorManage); } /** * 권한을 수정한다. * @param authorManage AuthorManage * @exception Exception */ public void updateAuthor(AuthorManage authorManage) throws Exception { authorManageDAO.updateAuthor(authorManage); } /** * 권한을 삭제한다. * @param authorManage AuthorManage * @exception Exception */ public void deleteAuthor(AuthorManage authorManage) throws Exception { authorManageDAO.deleteAuthor(authorManage); } /** * 권한을 조회한다. * @param authorManageVO AuthorManageVO * @return AuthorManageVO * @exception Exception */ public AuthorManageVO selectAuthor(AuthorManageVO authorManageVO) throws Exception { AuthorManageVO resultVO = authorManageDAO.selectAuthor(authorManageVO); if (resultVO == null) throw processException("info.nodata.msg"); return resultVO; } /** * 권한 목록 카운트를 조회한다. * @param authorManageVO AuthorManageVO * @return int * @exception Exception */ public int selectAuthorListTotCnt(AuthorManageVO authorManageVO) throws Exception { return authorManageDAO.selectAuthorListTotCnt(authorManageVO); } /** * 모든 권한목록을 조회한다. * @param authorManageVO AuthorManageVO * @return List<AuthorManageVO> * @exception Exception */ public List<AuthorManageVO> selectAuthorAllList(AuthorManageVO authorManageVO) throws Exception { return authorManageDAO.selectAuthorAllList(authorManageVO); } /** * 사용하는 모든 권한목록을 조회한다. * @param authorManageVO AuthorManageVO * @return List<AuthorManageVO> * @exception Exception */ public List<AuthorManageVO> selectAuthorUseAllList(AuthorManageVO authorManageVO) throws Exception { return authorManageDAO.selectAuthorUseAllList(authorManageVO); } }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up