Examples of OrderTO


Examples of cz.muni.fi.pa165.stis.dto.OrderTO

    @Test
    public void testGet() {
        order.setId(1L);
        orderTO.setId(1L);
        when(dao.get(1L)).thenReturn(order);
        OrderTO ot = orderService.get(1L);
       
        assertEquals(ot, orderTO);
    }
View Full Code Here

Examples of cz.muni.fi.pa165.stis.dto.OrderTO

        return new RedirectResolution(this.getClass(), "list");
    }
   
    public Resolution delete() {
        Long id = Long.parseLong(getContext().getRequest().getParameter("order.id"));
        OrderTO ot = service.get(id);
        logger.debug("delete() {}", ot);
        //
        service.remove(ot);
        //
        return new RedirectResolution(OrderActionBean.class, "list");
View Full Code Here

Examples of cz.muni.fi.pa165.stis.dto.OrderTO

    }
   
    public Resolution done() {
        Date date = new Date();
        Long id = Long.parseLong(getContext().getRequest().getParameter("order.id"));
        OrderTO ot = service.get(id);
        ot.setOrderServicedDate(date);
        logger.debug("done() {}", ot);
        service.update(ot);
        //
        return new RedirectResolution(OrderActionBean.class, "list");
    }
View Full Code Here

Examples of cz.muni.fi.pa165.stis.dto.OrderTO

    }

    public Resolution paid() {
        Date date = new Date();
        Long id = Long.parseLong(getContext().getRequest().getParameter("order.id"));
        OrderTO ot = service.get(id);
        ot.setOrderPaidDate(date);
        logger.debug("paid() {}", ot);
        service.update(ot);
        //
        return new RedirectResolution(OrderActionBean.class, "list");
    }
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.