mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 18:59:15 +00:00
15 lines
240 B
Java
15 lines
240 B
Java
package com.iluwatar.business.delegate;
|
|
|
|
/**
|
|
*
|
|
* Service EJB implementation
|
|
*
|
|
*/
|
|
public class EjbService implements BusinessService {
|
|
|
|
@Override
|
|
public void doProcessing() {
|
|
System.out.println("EjbService is now processing");
|
|
}
|
|
}
|