// after .send() is called on signals the user will be prompted at the
// console prompt for approval before transmission. The included class is just
// an example and can be implemented with other GUI technologies.
try {
C2EntryServiceAdapter liveAdapter = new Collective2Adapter();
C2EntryHumanApproval approval = new ApprovalRequestableConsole();
C2ServiceFactory factory = new C2ServiceFactory(liveAdapter,approval);
C2EntryService entryService = factory.signalEntryService(password,systemId);
assertNotNull(entryService);
} catch (Exception e) {