Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 85ADD18B4C for ; Thu, 24 Mar 2016 12:08:35 +0000 (UTC) Received: (qmail 13965 invoked by uid 500); 24 Mar 2016 12:08:34 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 13832 invoked by uid 500); 24 Mar 2016 12:08:34 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 12602 invoked by uid 99); 24 Mar 2016 12:08:33 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Mar 2016 12:08:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C1E4CE9817; Thu, 24 Mar 2016 12:08:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stoader@apache.org To: commits@ambari.apache.org Date: Thu, 24 Mar 2016 12:08:51 -0000 Message-Id: <519273d9d88c4baba6c49efeca70d6dc@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [19/51] [abbrv] ambari git commit: Update and UpdateItem audit event creators Update and UpdateItem audit event creators Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/872f85c1 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/872f85c1 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/872f85c1 Branch: refs/heads/audit_logging Commit: 872f85c1fc064703e6d1472421cdc91824aeccda Parents: 5f7cada Author: Daniel Gergely Authored: Wed Feb 24 17:22:08 2016 +0100 Committer: Toader, Sebastian Committed: Thu Mar 24 13:06:47 2016 +0100 ---------------------------------------------------------------------- .../org/apache/ambari/server/controller/ControllerModule.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/872f85c1/ambari-server/src/main/java/org/apache/ambari/server/controller/ControllerModule.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/controller/ControllerModule.java b/ambari-server/src/main/java/org/apache/ambari/server/controller/ControllerModule.java index 4c2992a..0d7128d 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/controller/ControllerModule.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/controller/ControllerModule.java @@ -60,6 +60,8 @@ import org.apache.ambari.server.audit.request.eventcreator.ConfigurationChangeEv import org.apache.ambari.server.audit.request.eventcreator.DefaultEventCreator; import org.apache.ambari.server.audit.request.eventcreator.ComponentEventCreator; import org.apache.ambari.server.audit.request.eventcreator.ServiceEventCreator; +import org.apache.ambari.server.audit.request.eventcreator.UpgradeEventCreator; +import org.apache.ambari.server.audit.request.eventcreator.UpgradeItemEventCreator; import org.apache.ambari.server.audit.request.eventcreator.UserEventCreator; import org.apache.ambari.server.audit.request.eventcreator.ViewInstanceEventCreator; import org.apache.ambari.server.audit.request.eventcreator.ViewPrivilegeEventCreator; @@ -426,6 +428,8 @@ public class ControllerModule extends AbstractModule { auditLogEventCreatorBinder.addBinding().to(AlertGroupEventCreator.class); auditLogEventCreatorBinder.addBinding().to(AlertTargetEventCreator.class); auditLogEventCreatorBinder.addBinding().to(HostEventCreator.class); + auditLogEventCreatorBinder.addBinding().to(UpgradeEventCreator.class); + auditLogEventCreatorBinder.addBinding().to(UpgradeItemEventCreator.class); bind(RequestAuditLogger.class).to(RequestAuditLoggerImpl.class); }