1 /**2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved.3 * Please look at license.txt in info directory for more license detail.4 **/5 6 /**7 * Created by The eXo Platform SARL8 * Author : Mestrallet Benjamin9 * benjmestrallet@users.sourceforge.net10 * Date: Aug 7, 200311 * Time: 11:39:25 PM12 */13 package org.exoplatform.container.mocks;14 15 public class MockService {16 17 public MockService() {18 System.out.println("MockService constructor");19 }20 21 public String hello() {22 return "HELLO WORLD SERVICE";23 }24 25 public String getTest(){26 return "heh";27 }28 29 }30