Repository: incubator-ranger Updated Branches: refs/heads/ranger-0.5 cc690cd7a -> babc79c28
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/babc79c2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/babc79c2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/babc79c2 Branch: refs/heads/ranger-0.5 Commit: babc79c28cbf10cea1b6e8ca08f38a484ad7b278 Parents: cc690cd Author: Alok Lal <[email protected]> Authored: Thu Jun 25 15:04:14 2015 -0700 Committer: sneethiraj <[email protected]> Committed: Thu Jun 25 16:21:24 2015 -0700 ---------------------------------------------------------------------- .../pdp/knox/filter/XASecurePDPKnoxFilter.java | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/babc79c2/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 { +}
