You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eagle.apache.org by yo...@apache.org on 2016/08/12 04:04:49 UTC

[1/2] incubator-eagle git commit: HDFSAuditLogAppProvider naming issue

Repository: incubator-eagle
Updated Branches:
  refs/heads/develop 27513f7b7 -> a7a5358d8


HDFSAuditLogAppProvider naming issue


Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/45dd605f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/45dd605f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/45dd605f

Branch: refs/heads/develop
Commit: 45dd605f25a8b3b27e1cbc5863a0dde615e35d62
Parents: 27513f7
Author: yonzhang <yo...@gmail.com>
Authored: Thu Aug 11 21:07:02 2016 -0700
Committer: yonzhang <yo...@gmail.com>
Committed: Thu Aug 11 21:07:02 2016 -0700

----------------------------------------------------------------------
 .../auditlog/HDFSAuditLogAppProvider.java       | 34 --------------------
 1 file changed, 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/45dd605f/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HDFSAuditLogAppProvider.java
----------------------------------------------------------------------
diff --git a/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HDFSAuditLogAppProvider.java b/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HDFSAuditLogAppProvider.java
deleted file mode 100644
index fcf9d4f..0000000
--- a/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HDFSAuditLogAppProvider.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- *
- *  *
- *  *  * Licensed to the Apache Software Foundation (ASF) under one or more
- *  *  * contributor license agreements.  See the NOTICE file distributed with
- *  *  * this work for additional information regarding copyright ownership.
- *  *  * The ASF licenses this file to You under the Apache License, Version 2.0
- *  *  * (the "License"); you may not use this file except in compliance with
- *  *  * the License.  You may obtain a copy of the License at
- *  *  * <p/>
- *  *  * http://www.apache.org/licenses/LICENSE-2.0
- *  *  * <p/>
- *  *  * Unless required by applicable law or agreed to in writing, software
- *  *  * distributed under the License is distributed on an "AS IS" BASIS,
- *  *  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  *  * See the License for the specific language governing permissions and
- *  *  * limitations under the License.
- *  *
- *
- */
-
-package org.apache.eagle.security.auditlog;
-
-import org.apache.eagle.app.spi.AbstractApplicationProvider;
-
-/**
- * Since 8/11/16.
- */
-public class HdfsAuditLogAppProvider extends AbstractApplicationProvider<HdfsAuditLogApplication> {
-    @Override
-    public HdfsAuditLogApplication getApplication() {
-        return new HdfsAuditLogApplication();
-    }
-}


[2/2] incubator-eagle git commit: add back file name issue

Posted by yo...@apache.org.
add back file name issue


Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/a7a5358d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/a7a5358d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/a7a5358d

Branch: refs/heads/develop
Commit: a7a5358d8df9a256677a7a78869a922ebb4fa38f
Parents: 45dd605
Author: yonzhang <yo...@gmail.com>
Authored: Thu Aug 11 21:08:40 2016 -0700
Committer: yonzhang <yo...@gmail.com>
Committed: Thu Aug 11 21:08:40 2016 -0700

----------------------------------------------------------------------
 .../auditlog/HdfsAuditLogAppProvider.java       | 32 ++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/a7a5358d/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HdfsAuditLogAppProvider.java
----------------------------------------------------------------------
diff --git a/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HdfsAuditLogAppProvider.java b/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HdfsAuditLogAppProvider.java
new file mode 100644
index 0000000..2932190
--- /dev/null
+++ b/eagle-security/eagle-security-hdfs-auditlog/src/main/java/org/apache/eagle/security/auditlog/HdfsAuditLogAppProvider.java
@@ -0,0 +1,32 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.eagle.security.auditlog;
+
+
+import org.apache.eagle.app.spi.AbstractApplicationProvider;
+
+/**
+ * Since 8/11/16.
+ */
+public class HdfsAuditLogAppProvider extends AbstractApplicationProvider<HdfsAuditLogApplication> {
+    @Override
+    public HdfsAuditLogApplication getApplication() {
+        return new HdfsAuditLogApplication();
+    }
+}
+