import class
com.wm.app.b2b.server.dispatcher.trigger.TriggerManagementUtil
and the below code in a java service will give you all triggers in IS
IDataCursor pipelineCursor = pipeline.getCursor();
String[] triggerNames = TriggerManagementUtil.getTriggerList();
IDataUtil.put( pipelineCursor, "triggerNames", triggerNames );
pipelineCursor.destroy();
#Integration-Server-and-ESB#webMethods#Flow-and-Java-services