Package org.nextime.ion.framework.business

Examples of org.nextime.ion.framework.business.Section.down()


      Mapping.begin();
      Section s = Section.getInstance(request.getParameter("id"));
      if (request.getParameter("type").equals("up")) {
        s.up();
      } else {
        s.down();
      }
      Mapping.commit();
    } catch (MappingException e) {
      Mapping.rollback();
      throw new ServletException(e);
View Full Code Here


      // up or down ?
      if( request.getParameter("type").equals("up") ) {
        section.up();
        node.up();
      } else {
        section.down();
        node.down();
      }
     
      Mapping.commit();
    } catch (Exception e) {
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.