Examples of ILoggingAction


Examples of org.olat.core.logging.activity.ILoggingAction

      if(currentMsg.getParent()==null) {
        currentMsg.setStatusCode(Status.getStatusCode(status));
        fm.updateMessage(currentMsg, new ForumChangedEvent("close"));
      }
      // do logging
      ILoggingAction loggingAction;
      if (closed)  {
        loggingAction = ForumLoggingAction.FORUM_THREAD_CLOSE;
      } else {
        loggingAction = ForumLoggingAction.FORUM_THREAD_REOPEN;
      }
View Full Code Here

Examples of org.olat.core.logging.activity.ILoggingAction

      if(currentMsg.getParent()==null) {
        currentMsg.setStatusCode(Status.getStatusCode(status));
        fm.updateMessage(currentMsg, new ForumChangedEvent("hide"));       
      }
      // do logging
      ILoggingAction loggingAction;
      if (hidden)  {
        loggingAction = ForumLoggingAction.FORUM_THREAD_HIDE;
      } else {
        loggingAction = ForumLoggingAction.FORUM_THREAD_SHOW;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.