You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Description

Audit Trail Plugins is triggered after process related event to provide extra processing capabilities. E.g. Capture reporting data or user notification.

Abstract Classes

org.joget.plugin.base.DefaultAuditTrailPlugin

// Variables
private Map<String, Object> properties;

// Abstract Methods
public abstract String getName();

public abstract String getDescription();

public abstract String getVersion();

public abstract String getLabel();

public abstract String getClassName();

public abstract String getPropertyOptions();

public abstract Object execute(Map properties);

// Available Methods
public Map<String, Object> getProperties();

public void setProperties(Map<String, Object> properties);

public Object getProperty(String property);

public String getPropertyString(String property);

public void setProperty(String property, Object value);

Sample Plugin

Coming soon.

Related Community Plugin

  • User Notification
  • Process Data Collector
  • No labels