01: // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved. 02: 03: package madvoc.biz; 04: 05: import jodd.petite.meta.PetiteBean; 06: 07: @PetiteBean 08: public class FooService { 09: 10: public void hello() { 11: System.out.println("FooService.hello"); 12: } 13: }