1 package org.wamblee.system.spring;
3 public class BlaService {
4 private HelloService _hello;
6 public BlaService(HelloService aService) {
7 if ( aService == null ) {
8 throw new IllegalArgumentException("helloService is null");
13 public String execute() {
18 System.out.println("Blaservice stopping");