egovframework.rfc3.iam.web
Class ResourceController

java.lang.Object
  extended by egovframework.rfc3.iam.web.ResourceController

@Controller
@SessionAttributes(types=SessionVO.class)
public class ResourceController
extends java.lang.Object

자원 관리에 controller 클래스를 정의한다.

Since:
2011.01.31
Version:
egovframework RFC 3.0
Author:
개발팀 허성철
See Also:
 << 개정이력(Modification Information) >>
   
   수정일      수정자           수정내용
  -------    --------    ---------------------------
   2011.01.31  허성철          최초 생성

 Copyright (C) 2011 by skoinfo  All right reserved.
 

Constructor Summary
ResourceController()
           
 
Method Summary
 java.lang.String deleteResourceAct(ResourceVO resourceVO, org.springframework.web.bind.support.SessionStatus status, org.springframework.ui.ModelMap model)
          자원 삭제 처리 하기
 java.lang.String resourceList(javax.servlet.http.HttpServletRequest request, ResourceVO resourceVO, org.springframework.ui.ModelMap model)
          자원목록
 java.lang.String resultPage(ResourceVO resourceVO, org.springframework.ui.ModelMap model)
          결과 처리 페이지
 java.lang.String updateResourceAct(ResourceVO resourceVO, org.springframework.validation.BindingResult bindingResult, org.springframework.web.bind.support.SessionStatus status, org.springframework.ui.ModelMap model)
          자원 수정 처리 페이지
 java.lang.String writeResoruceAct(ResourceVO resourceVO, org.springframework.validation.BindingResult bindingResult, org.springframework.web.bind.support.SessionStatus status, org.springframework.ui.ModelMap model)
          자원 등록 처리
 java.lang.String writeResource(ResourceVO resourceVO, ResourceVO searchVO, org.springframework.ui.ModelMap model)
          자원 등록 및 수정 화면
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceController

public ResourceController()
Method Detail

resourceList

@RequestMapping(value="/iam/resource/list.sko")
public java.lang.String resourceList(javax.servlet.http.HttpServletRequest request,
                                                    @ModelAttribute(value="resourceVO")
                                                    ResourceVO resourceVO,
                                                    org.springframework.ui.ModelMap model)
                              throws java.lang.Exception
자원목록

Parameters:
request -
userManageVO -
model -
Returns:
Throws:
java.lang.Exception

writeResource

@RequestMapping(value="/iam/resource/write.sko")
public java.lang.String writeResource(@ModelAttribute(value="resourceVO")
                                                     ResourceVO resourceVO,
                                                     @ModelAttribute(value="searchVO")
                                                     ResourceVO searchVO,
                                                     org.springframework.ui.ModelMap model)
                               throws java.lang.Exception
자원 등록 및 수정 화면

Parameters:
userManageVO -
searchVO -
model -
Returns:
Throws:
java.lang.Exception

writeResoruceAct

@RequestMapping(value="/iam/resource/writeAct.sko")
public java.lang.String writeResoruceAct(@ModelAttribute(value="resourceVO")
                                                        ResourceVO resourceVO,
                                                        org.springframework.validation.BindingResult bindingResult,
                                                        org.springframework.web.bind.support.SessionStatus status,
                                                        org.springframework.ui.ModelMap model)
                                  throws java.lang.Exception
자원 등록 처리

Parameters:
resourceVO -
bindingResult -
status -
model -
Returns:
Throws:
java.lang.Exception

updateResourceAct

@RequestMapping(value="/iam/resource/updateAct.sko")
public java.lang.String updateResourceAct(@ModelAttribute(value="resourceVO")
                                                         ResourceVO resourceVO,
                                                         org.springframework.validation.BindingResult bindingResult,
                                                         org.springframework.web.bind.support.SessionStatus status,
                                                         org.springframework.ui.ModelMap model)
                                   throws java.lang.Exception
자원 수정 처리 페이지

Parameters:
resourceVO -
bindingResult -
status -
model -
Returns:
Throws:
java.lang.Exception

deleteResourceAct

@RequestMapping(value="/iam/resource/deleteAct.sko")
public java.lang.String deleteResourceAct(@ModelAttribute(value="resourceVO")
                                                         ResourceVO resourceVO,
                                                         org.springframework.web.bind.support.SessionStatus status,
                                                         org.springframework.ui.ModelMap model)
                                   throws java.lang.Exception
자원 삭제 처리 하기

Parameters:
resourceVO -
status -
model -
Returns:
Throws:
java.lang.Exception

resultPage

@RequestMapping(value="/iam/resource/result.sko")
public java.lang.String resultPage(@ModelAttribute(value="resourceVO")
                                                  ResourceVO resourceVO,
                                                  org.springframework.ui.ModelMap model)
                            throws java.lang.Exception
결과 처리 페이지

Parameters:
resourceVO -
model -
Returns:
Throws:
java.lang.Exception