Ir al contenido
Otras versiones

Cargando…

GeneralUtils

Esta página aún no está disponible en tu idioma.

Generic utility methods. For example, to notify something to an user.

Description:

Method Return values Description
uiNotify(String msg) void Notify to current authenticated user.

Example:

package com.openkm;
import com.openkm.util.GeneralUtils;
public class Test {
public static void main(String[] args) {
try {
GeneralUtils.uiNotify("Message test!");
} catch (Exception e) {
e.printStackTrace();
}
}
}