*/
public Welcome welcomeService(Greetee greetee) throws ZorroException {
char firstChar = greetee.getName().charAt(0);
if (firstChar != 'z' && firstChar != 'Z') {
throw new ZorroException(greetee.getName());
}
return new Welcome("Howdy " + greetee.getName() + "!");
}