1 package org.myorg.encconfig.ejb;
2
3 import javax.ejb.Remote;
4
5 @Remote
6 public interface AuditorRemote {
7 boolean isPublishJMS();
8 boolean havePersistenceContext();
9 boolean haveTopic();
10 boolean haveConnectionFactory();
11 int audit(String message);
12 }