Examples of functionCode()


Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

      CapAuditLogAction auditLogAction = method
          .getAnnotation(CapAuditLogAction.class);

      action = (auditLogAction != null && auditLogAction.actionType() != null) ? auditLogAction
          .actionType().toString() : null;
      function = (auditLogAction != null && auditLogAction.functionCode() != null) ? auditLogAction
          .functionCode().getCode() : null;
      if (action != null && function != null) {
        logAuditInfo = StrUtils.concat(auditLogAction.actionType()
            .name(), CapConstants.SPACE, auditLogAction
            .functionCode().name(), CapConstants.SPACE,
View Full Code Here

Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

      CapAuditLogAction auditLogAction = method
          .getAnnotation(CapAuditLogAction.class);

      action = (auditLogAction != null && auditLogAction.actionType() != null) ? auditLogAction
          .actionType().toString() : null;
      function = (auditLogAction != null && auditLogAction.functionCode() != null) ? auditLogAction
          .functionCode().getCode() : null;
      if (action != null && function != null) {
        logAuditInfo = StrUtils.concat(auditLogAction.actionType()
            .name(), CapConstants.SPACE, auditLogAction
            .functionCode().name(), CapConstants.SPACE,
View Full Code Here

Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

          .actionType().toString() : null;
      function = (auditLogAction != null && auditLogAction.functionCode() != null) ? auditLogAction
          .functionCode().getCode() : null;
      if (action != null && function != null) {
        logAuditInfo = StrUtils.concat(auditLogAction.actionType()
            .name(), CapConstants.SPACE, auditLogAction
            .functionCode().name(), CapConstants.SPACE,
            auditLogAction.functionCode().getUrlPath());
      }
    }
    if (LOGGER.isTraceEnabled()) {
View Full Code Here

Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

          .functionCode().getCode() : null;
      if (action != null && function != null) {
        logAuditInfo = StrUtils.concat(auditLogAction.actionType()
            .name(), CapConstants.SPACE, auditLogAction
            .functionCode().name(), CapConstants.SPACE,
            auditLogAction.functionCode().getUrlPath());
      }
    }
    if (LOGGER.isTraceEnabled()) {
      LOGGER.trace("{} ENTRY: {} Start Time: {} Audit Information: {}",
          new Object[] { TITLE, targetName, new Date(start),
View Full Code Here

Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

      CapAuditLogAction auditLogAction = method
          .getAnnotation(CapAuditLogAction.class);

      action = (auditLogAction != null && auditLogAction.actionType() != null) ? auditLogAction
          .actionType().toString() : null;
      function = (auditLogAction != null && auditLogAction.functionCode() != null) ? auditLogAction
          .functionCode().getCode() : null;
      if (action != null && function != null) {
        haveToAudit = true;
      }
    }
View Full Code Here

Examples of com.isigroup.cap.base.annotation.CapAuditLogAction.functionCode()

      CapAuditLogAction auditLogAction = method
          .getAnnotation(CapAuditLogAction.class);

      action = (auditLogAction != null && auditLogAction.actionType() != null) ? auditLogAction
          .actionType().toString() : null;
      function = (auditLogAction != null && auditLogAction.functionCode() != null) ? auditLogAction
          .functionCode().getCode() : null;
      if (action != null && function != null) {
        haveToAudit = true;
      }
    }
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.