* @throws InvocationTargetException
*/
public static void saveFeed(MergeResult mergeResult) throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException {
Method m = ApplicationServiceImpl.class.getDeclaredMethod("saveFeed", MergeResult.class);
m.setAccessible(true);
IApplicationService appService = Owl.getApplicationService();
m.invoke(appService, mergeResult);
}