Package com.expositds.ars.domain.order

Examples of com.expositds.ars.domain.order.Activity


  }

  @SuppressWarnings("deprecation")
  @Override
  public Activity convertFrom(ActivityEntity source, Activity destination) {
    Activity result = null;
    ActivityEntity tmp = null;

    if (source != null) {
      tmp = HibernateHelper.initializeAndUnproxy(source);
    }   
View Full Code Here


    return result;
  }

  @Override
  public Activity updateActivity(Activity activity) {
    Activity result = null;

    ActivityEntity activityEntity = DozerHelper.map(activity,
        ActivityEntity.class);
    activityEntity = activityRepository.merge(activityEntity);
    result = DozerHelper.map(activityEntity, Activity.class);
View Full Code Here

    activityRepository.delete(id);
  }

  @Override
  public Activity getActivityById(Long id) {
    Activity result = null;

    ActivityEntity activityEntity = activityRepository.findById(id);
    result = DozerHelper.map(activityEntity, Activity.class);

    return result;
View Full Code Here

  @Autowired
  private IOrderService orderService;

  @Test
  public void addActivityTest () {
    Activity activity = activityService.getActivityById(new Long(1));
   
    Long id = activityService.addActivity(activity);
    activity = activityService.getActivityById(id);
    log.info(activity);
  }
View Full Code Here

    log.info(activity);
  }
 
  @Test
  public void updateActivityTest () {
    Activity activity = activityService.getActivityById(new Long(1));
    activity.setTotal(55f);
   
    log.info(activity);
  }
View Full Code Here

    log.info(activity);
  }
 
  @Test
  public void deleteActivityTest () {
    Activity activity = activityService.getActivityById(new Long(1));
    activityService.deleteActivity(activity);
  }
View Full Code Here

TOP

Related Classes of com.expositds.ars.domain.order.Activity

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.