Examples of CentroInfo


Examples of org.magicbox.dto.CentroInfo

*/
public class InformazioniCentroController extends AbstractController {

    public ModelAndView handleRequestInternal(HttpServletRequest req, HttpServletResponse res) throws Exception {
        Centro centro = centriManager.getCentro(WebUtils.getIdCentro(req));
        return new ModelAndView("centro/infoCentro", Constant.PAGE_VO, new CentroInfo(centro));
    }
View Full Code Here

Examples of org.magicbox.dto.CentroInfo

    _reqMock.getSession().setAttribute(Constant.ID_CENTRO_SESSIONE, new Long(46));
    _reqMock.setParameter(Constant.ID, "1");
   
    ModelAndView mav = _controller.handleRequest(_reqMock, _resMock);
    assertEquals("centro/infoCentro", mav.getViewName());
    CentroInfo centro = (CentroInfo)mav.getModel().get(Constant.PAGE_VO);
    assertNotNull(centro);
   
    dbCentro.pulisciDb();
    dbCentro = null;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.