Package de.xanders.data.customer.dao

Examples of de.xanders.data.customer.dao.Activity


    /**
     * @see ActivityService#getActivityById(java.lang.Long)
     */
    protected ActivityVO handleGetActivityById(java.lang.Long activityId)
        throws java.lang.Exception {
      Activity activity = this.getActivityDao().load(activityId);
      return this.getActivityDao().toActivityVO(activity);
    }
View Full Code Here


    /**
     * @see ActivityService#saveActivity(ActivityVO)
     */
    protected ActivityVO handleSaveActivity(ActivityVO activityVO)
        throws java.lang.Exception {
      Activity activity = this.getActivityDao().activityVOToEntity(activityVO);
        if (activity.getActivityId() == null) {
            activity = this.getActivityDao().create(activity);
            activityVO.setActivityId(activity.getActivityId());
        }
        else {
            this.getActivityDao().update(activity);           
        }
        return activityVO;
View Full Code Here

TOP

Related Classes of de.xanders.data.customer.dao.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.