Repository: incubator-ranger Updated Branches: refs/heads/master f0b129b79 -> d026a7e2b
RANGER-570 Knox plugin: added shell classes with old class names so that knox plugin will work after ranger upgrade from 0.4 to 0.5 Signed-off-by: sneethiraj <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/d026a7e2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/d026a7e2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/d026a7e2 Branch: refs/heads/master Commit: d026a7e2b4c38273a47767c032eda9d03a30c14e Parents: f0b129b Author: Alok Lal <[email protected]> Authored: Thu Jun 25 15:04:14 2015 -0700 Committer: sneethiraj <[email protected]> Committed: Thu Jun 25 16:19:45 2015 -0700 ---------------------------------------------------------------------- .../pdp/knox/filter/XASecurePDPKnoxFilter.java | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/d026a7e2/knox-agent/src/main/java/com/xasecure/pdp/knox/filter/XASecurePDPKnoxFilter.java ---------------------------------------------------------------------- diff --git a/knox-agent/src/main/java/com/xasecure/pdp/knox/filter/XASecurePDPKnoxFilter.java b/knox-agent/src/main/java/com/xasecure/pdp/knox/filter/XASecurePDPKnoxFilter.java new file mode 100644 index 0000000..6b9d6fd --- /dev/null +++ b/knox-agent/src/main/java/com/xasecure/pdp/knox/filter/XASecurePDPKnoxFilter.java @@ -0,0 +1,25 @@ +/* + * 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 com.xasecure.pdp.knox.filter; + +import org.apache.ranger.authorization.knox.RangerPDPKnoxFilter; + +public class XASecurePDPKnoxFilter extends RangerPDPKnoxFilter { +}
