http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/fb1a99a9/agents-impl/src/main/java/org/apache/ranger/pdp/model/RolePermission.java ---------------------------------------------------------------------- diff --git a/agents-impl/src/main/java/org/apache/ranger/pdp/model/RolePermission.java b/agents-impl/src/main/java/org/apache/ranger/pdp/model/RolePermission.java deleted file mode 100644 index accee6c..0000000 --- a/agents-impl/src/main/java/org/apache/ranger/pdp/model/RolePermission.java +++ /dev/null @@ -1,71 +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 - * - * 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.ranger.pdp.model; - -import java.util.ArrayList; -import java.util.List; - -public class RolePermission { - - private List<String> users ; - private List<String> groups ; - private List<String> access ; - private List<String> ipAddress ; - - public RolePermission() { - users = new ArrayList<String>() ; - groups = new ArrayList<String>() ; - access = new ArrayList<String>() ; - } - - - public List<String> getUsers() { - return users; - } - - public void setUsers(List<String> users) { - this.users = users; - } - - public List<String> getGroups() { - return groups; - } - - public void setGroups(List<String> groups) { - this.groups = groups; - } - - public List<String> getAccess() { - return this.access; - } - - public List<String> getIpAddress() { - return this.ipAddress; - } - - public void setIpAddress(List<String> ipAddress) { - this.ipAddress = ipAddress ; - } - - public void setAccess(List<String> access) { - this.access = access ; - } - -}
http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/fb1a99a9/hbase-agent/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-agent/pom.xml b/hbase-agent/pom.xml index 2fee01f..4ce1f8b 100644 --- a/hbase-agent/pom.xml +++ b/hbase-agent/pom.xml @@ -19,8 +19,8 @@ <modelVersion>4.0.0</modelVersion> <groupId>security_plugins.ranger-hbase-plugin</groupId> <artifactId>ranger-hbase-plugin</artifactId> - <name>HBaseSecurityAgents</name> - <description>HBase Security Agents</description> + <name>HBase Security Plugin</name> + <description>HBase Security Plugins</description> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/fb1a99a9/hive-agent/pom.xml ---------------------------------------------------------------------- diff --git a/hive-agent/pom.xml b/hive-agent/pom.xml index 3b3bc66..fe5c98d 100644 --- a/hive-agent/pom.xml +++ b/hive-agent/pom.xml @@ -19,8 +19,8 @@ <modelVersion>4.0.0</modelVersion> <groupId>security_plugins.ranger-hive-plugin</groupId> <artifactId>ranger-hive-plugin</artifactId> - <name>Hive Security Agent</name> - <description>Hive Security Agents</description> + <name>Hive Security Plugin</name> + <description>Hive Security Plugins</description> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/fb1a99a9/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4d91aa3..b1467a9 100644 --- a/pom.xml +++ b/pom.xml @@ -78,7 +78,6 @@ <module>agents-audit</module> <module>agents-common</module> <module>agents-cred</module> - <module>agents-impl</module> <module>agents-installer</module> <module>credentialbuilder</module> <module>embeddedwebserver</module>
