org.jbpm.process.audit
public class AuditLoggerFactory extends Object
Modifier and Type | Class and Description |
---|---|
static class |
AuditLoggerFactory.Type |
Constructor and Description |
---|
AuditLoggerFactory() |
Modifier and Type | Method and Description |
---|---|
static AbstractAuditLogger |
newInstance(AuditLoggerFactory.Type type,
org.kie.api.runtime.KieSession ksession,
Map<String,Object> properties)
Creates new instance of audit logger based on given type and parameters and
registers it directly in given ksession to receive its events.
|
static AbstractAuditLogger |
newJMSInstance(boolean transacted,
javax.jms.ConnectionFactory connFactory,
javax.jms.Queue queue)
Creates new instance of JMS audit logger based on given connection factory and queue.
|
static AbstractAuditLogger |
newJMSInstance(Map<String,Object> properties)
Creates new instance of JMS audit logger based on given parameters.
|
static AbstractAuditLogger |
newJPAInstance(javax.persistence.EntityManagerFactory emf)
Creates new instance of JPA audit logger with given EntityManagerFactory
NOTE: this will build the logger but it is not registered directly on a session son once received needs to be
registered as event listener
|
public static AbstractAuditLogger newInstance(AuditLoggerFactory.Type type, org.kie.api.runtime.KieSession ksession, Map<String,Object> properties)
type
- - type of the AuditLoger to create (JPA or JMS)ksession
- - ksession that the logger will be attached toproperties
- - optional properties for the type of logger to initialize itpublic static AbstractAuditLogger newJPAInstance(javax.persistence.EntityManagerFactory emf)
emf
- EntityManagerFactory used to provide JPA entity manager instances on demand.public static AbstractAuditLogger newJMSInstance(Map<String,Object> properties)
properties
- - optional properties for the type of logger to initialize itpublic static AbstractAuditLogger newJMSInstance(boolean transacted, javax.jms.ConnectionFactory connFactory, javax.jms.Queue queue)
transacted
- determines if JMS session is transacted or notconnFactory
- connection factory instancequeue
- JMS queue instanceCopyright © 2001-2013 JBoss by Red Hat. All Rights Reserved.