#89 Finished the example code

This commit is contained in:
Ilkka Seppala
2015-07-22 23:20:28 +03:00
parent 731f37723a
commit 61573e9ef2
8 changed files with 82 additions and 1 deletions

View File

@ -0,0 +1,9 @@
package com.iluwatar;
public class JmsService implements BusinessService {
@Override
public void doProcessing() {
System.out.println("JmsService is now processing");
}
}