Uses of Class
jp.terasoluna.fw.service.thin.BLogicIO

Packages that use BLogicIO
jp.terasoluna.fw.service.thin Related to business logic of Web version  
jp.terasoluna.fw.web.struts.actions Extended classes related to the "Action" of Struts in Web version  
 

Uses of BLogicIO in jp.terasoluna.fw.service.thin
 

Fields in jp.terasoluna.fw.service.thin with type parameters of type BLogicIO
private  java.util.Map<java.lang.String,BLogicIO> BLogicResources.blogicIO
          Map which retains the I/O information by using the action path as key.
 

Methods in jp.terasoluna.fw.service.thin that return BLogicIO
 BLogicIO BLogicResources.getBLogicIO(java.lang.String path)
          Fetches the I/O information by using the action path name as key.
 

Methods in jp.terasoluna.fw.service.thin with parameters of type BLogicIO
protected  void AbstractBLogicMapper.getResults(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BLogicIO io, java.lang.Object bean)
          Performs Mapping in the blogic-result of blogic-io.
 java.lang.Object AbstractBLogicMapper.mapBLogicParams(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BLogicIO io)
          Maps the value stored in Web tier objects with JavaBean.
 void AbstractBLogicMapper.mapBLogicResult(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BLogicIO io, BLogicResult result)
          Stores the value in Web tier object as per BLogicIO.
 void BLogicResources.setBLogicIO(BLogicIO blogicIO)
          Sets the input/output information Stores the I/O information by using the action path name as key. When blogicIO argument is null, NullPointerException occurs.
protected  java.lang.Object AbstractBLogicMapper.setParams(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BLogicIO io)
          Based on the JavaBean name which is the business logic input information, maps the value stored in Web tier object with JavaBean. Maps the blogic-params of blogic-io.
 

Uses of BLogicIO in jp.terasoluna.fw.web.struts.actions
 

Methods in jp.terasoluna.fw.web.struts.actions that return BLogicIO
protected  BLogicIO AbstractBLogicAction.getBLogicIO(org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request)
          Fetches BLogicIO.