Examples of AuditServiceProxy


Examples of it.eng.spagobi.services.proxy.AuditServiceProxy

      // limits errorMessage length
      if (errorMessage != null && errorMessage.length() > 390) {
    errorMessage = errorMessage.substring(0, 390);
      }

      AuditServiceProxy proxy = new AuditServiceProxy(userId,session);
      String ris = proxy.log( auditId, startTime != null ? startTime
        .toString() : "",
        endTime != null ? endTime.toString() : "",
        executionState != null ? executionState : "",
        errorMessage != null ? errorMessage : "",
        errorCode != null ? errorCode : "");
View Full Code Here

Examples of it.eng.spagobi.utilities.engines.AuditServiceProxy

      String classToLoad=work.getClassName();

      WorkManager wm = new WorkManager();
      logger.debug("work manager instanziated");

      AuditServiceProxy auditServiceProxy=null;
      Object auditO=parameters.get(EngineConstants.ENV_AUDIT_SERVICE_PROXY);     
      if(auditO!=null) auditServiceProxy=(AuditServiceProxy)auditO;
      Object eventO=parameters.get(EngineConstants.ENV_EVENT_SERVICE_PROXY);
      EventServiceProxy eventServiceProxy=null;
      eventServiceProxy=(EventServiceProxy)eventO;
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.