BrightSide Workbench Full Report + Source Code
org.turro.plugin.log.LogUtil Class Reference

Static Public Member Functions

static Collection< ILogRegisterload (LogType type, String pathOrigin, int group, String comment)
 
static Collection< ILogRegisterloadLogin ()
 
static Collection< ILogRegisterload (LogType type, String pathOrigin, int group, String comment)
 
static Collection< ILogRegisterloadLogin ()
 

Static Public Attributes

static int GROUP_ENTITY = 1
 

Detailed Description

Member Function Documentation

◆ load() [1/2]

static Collection<ILogRegister> org.turro.plugin.log.LogUtil.load ( LogType  type,
String  pathOrigin,
int  group,
String  comment 
)
static

Definition at line 36 of file elephant-plugins/src/main/java/org/turro/plugin/log/LogUtil.java.

36  {
37  ILogLoader loader = (ILogLoader) PluginChecker.get("logloader");
38  if(loader != null) {
39  return loader.load(type, pathOrigin, group, comment);
40  }
41  return null;
42  }
Here is the call graph for this function:

◆ load() [2/2]

static Collection<ILogRegister> org.turro.plugin.log.LogUtil.load ( LogType  type,
String  pathOrigin,
int  group,
String  comment 
)
static

Definition at line 36 of file elephant/src/main/java/org/turro/plugin/log/LogUtil.java.

36  {
37  ILogLoader loader = (ILogLoader) Plugins.loadImplementation(ILogLoader.class);//PluginChecker.get("logloader");
38  if(loader != null) {
39  return loader.load(type, pathOrigin, group, comment);
40  }
41  return null;
42  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ loadLogin() [1/2]

static Collection<ILogRegister> org.turro.plugin.log.LogUtil.loadLogin ( )
static

Definition at line 44 of file elephant-plugins/src/main/java/org/turro/plugin/log/LogUtil.java.

44  {
45  ILogLoader loader = (ILogLoader) PluginChecker.get("logloader");
46  if(loader != null) {
47  return loader.loadLogin();
48  }
49  return null;
50  }
Here is the call graph for this function:

◆ loadLogin() [2/2]

static Collection<ILogRegister> org.turro.plugin.log.LogUtil.loadLogin ( )
static

Definition at line 44 of file elephant/src/main/java/org/turro/plugin/log/LogUtil.java.

44  {
45  ILogLoader loader = (ILogLoader) Plugins.loadImplementation(ILogLoader.class);//PluginChecker.get("logloader");
46  if(loader != null) {
47  return loader.loadLogin();
48  }
49  return null;
50  }
Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ GROUP_ENTITY

static int org.turro.plugin.log.LogUtil.GROUP_ENTITY = 1
static

The documentation for this class was generated from the following file: