Examples of Auditor


Examples of ch.qos.logback.audit.client.Auditor

   
    if (auditAppender instanceof LifeCycle) {
      ((LifeCycle) auditAppender).start();
    }

    Auditor ac = (Auditor) context;
    ac.setAuditAppender(auditAppender);
  }
View Full Code Here

Examples of io.fabric8.insight.activemq.audit.Auditor

    private MBeanServer mbeanServer;
    private ServiceRegistration<ManagedService> registration;
    private List<ServiceRegistration> commandRegistrations;

    public Activator() {
        this.plugins.put("auditor", new Auditor(storageProxy));
    }
View Full Code Here

Examples of io.fabric8.insight.camel.audit.Auditor

    public Activator() {
        strategies.put(BREADCRUMBS, new Breadcrumbs());
        strategies.put(PROFILER, new Profiler());
        strategies.put(TRACER, new Tracer());
        strategies.put(AUDITOR, new Auditor(storageProxy));
    }
View Full Code Here

Examples of org.apache.bookkeeper.replication.Auditor

    public Auditor getAuditor(int timeout, TimeUnit unit) throws Exception {
        final long timeoutAt = System.nanoTime() + TimeUnit.NANOSECONDS.convert(timeout, unit);
        while (System.nanoTime() < timeoutAt) {
            for (AutoRecoveryMain p : autoRecoveryProcesses.values()) {
                Auditor a = p.getAuditor();
                if (a != null) {
                    return a;
                }
            }
            Thread.sleep(100);
View Full Code Here

Examples of org.apache.hadoop.gateway.audit.api.Auditor

  }
 
  @Override
  public synchronized Auditor getAuditor( String auditorName, String componentName, String serviceName ) {
    String key = auditorName + componentName + serviceName;
    Auditor auditor = auditors.get( key );
    if( auditor == null ) {
      auditor = new Log4jAuditor( auditorName, componentName, serviceName );
      auditors.put( key, auditor );
    }
    return auditor;
View Full Code Here

Examples of org.apache.openjpa.audit.Auditor

   
    /**
     * This method is invoked AFTER a BrokerFactory has been instantiated.
     */
    public void postCreationCallback() {
      Auditor auditor = _conf.getAuditorInstance();
      if (auditor != null) {
        addTransactionListener(new AuditManager(auditor));
      }
        if (_conf.isInitializeEagerly()) {
            newBroker(_conf.getConnectionUserName(), _conf.getConnectionPassword(),
View Full Code Here

Examples of org.apache.openjpa.audit.Auditor

   
    /**
     * This method is invoked AFTER a BrokerFactory has been instantiated.
     */
    public void postCreationCallback() {
      Auditor auditor = _conf.getAuditorInstance();
      if (auditor != null) {
        addTransactionListener(new AuditManager(auditor));
      }
        if (_conf.isInitializeEagerly()) {
            newBroker(_conf.getConnectionUserName(), _conf.getConnectionPassword(),
View Full Code Here

Examples of org.apache.openjpa.audit.Auditor

   
    /**
     * This method is invoked AFTER a BrokerFactory has been instantiated.
     */
    public void postCreationCallback() {
      Auditor auditor = _conf.getAuditorInstance();
      if (auditor != null) {
        addTransactionListener(new AuditManager(auditor));
      }
        if (_conf.isInitializeEagerly()) {
            newBroker(_conf.getConnectionUserName(), _conf.getConnectionPassword(),
View Full Code Here

Examples of org.apache.openjpa.audit.Auditor

    public Map<String, Object> getPersistenceEnvironment() {
        return _peMap;
    }
   
    public Auditor getAuditorInstance() {
      Auditor auditor = (Auditor) auditorPlugin.get();
        if (auditor == null) {
            auditor = (Auditor) auditorPlugin.instantiate(Auditor.class, this);
       }
       return auditor;
    }
View Full Code Here

Examples of org.apache.openjpa.audit.Auditor

    public Map<String, Object> getPersistenceEnvironment() {
        return _peMap;
    }
   
    public Auditor getAuditorInstance() {
      Auditor auditor = (Auditor) auditorPlugin.get();
        if (auditor == null) {
            auditor = (Auditor) auditorPlugin.instantiate(Auditor.class, this);
       }
       return auditor;
    }
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.