Package org.magicbox.exception

Examples of org.magicbox.exception.CentroNonTrovatoException


    private long valorizzaIdCentro(HttpServletRequest req) throws CentroNonTrovatoException {

        long idCentro = ServletRequestUtils.getLongParameter(req, Constant.ID, 0);
        if (idCentro == 0) {
            throw new CentroNonTrovatoException(idCentro);
        }
        return idCentro;
    }
View Full Code Here


     * @return Long
     */
    public static Long getIdCentro(HttpServletRequest req) throws Exception {
        long id = (Long) req.getSession().getAttribute(Constant.ID_CENTRO_SESSIONE);
        if (id == 0) {
            throw new CentroNonTrovatoException();
        } else {
            return id;
        }
    }
View Full Code Here

TOP

Related Classes of org.magicbox.exception.CentroNonTrovatoException

Copyright © 2018 www.massapicom. 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.