Package com.khs.sherpa.json.service

Examples of com.khs.sherpa.json.service.DefaultActivityService


  }
 
  public ActivityService activityService() {
    String activityClazzName = properties.getProperty("activity.service");
    if (activityClazzName == null) {
      return new DefaultActivityService();
    } else {
      return (ActivityService) createInstance(activityClazzName);
    }
  }
View Full Code Here

TOP

Related Classes of com.khs.sherpa.json.service.DefaultActivityService

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.