15 lines
222 B
Java
Raw Normal View History

2015-07-22 23:20:28 +03:00
package com.iluwatar;
2015-07-23 00:01:39 +03:00
/**
*
* Service JMS implementation
*
*/
2015-07-22 23:20:28 +03:00
public class JmsService implements BusinessService {
@Override
public void doProcessing() {
System.out.println("JmsService is now processing");
}
}