Repository: eagle Updated Branches: refs/heads/master b1c8f2442 -> 86eed4f56
[MINOR] Fix RAT on class BasicAuthRequestFilter Project: http://git-wip-us.apache.org/repos/asf/eagle/repo Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/81ad0311 Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/81ad0311 Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/81ad0311 Branch: refs/heads/master Commit: 81ad0311d1b402a28d9ef5644f5c7115af6f7dbf Parents: 94b597b Author: Hao Chen <[email protected]> Authored: Wed Feb 22 17:28:06 2017 +0800 Committer: Hao Chen <[email protected]> Committed: Wed Feb 22 17:28:06 2017 +0800 ---------------------------------------------------------------------- .../server/security/BasicAuthRequestFilter.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/eagle/blob/81ad0311/eagle-server/src/main/java/org/apache/eagle/server/security/BasicAuthRequestFilter.java ---------------------------------------------------------------------- diff --git a/eagle-server/src/main/java/org/apache/eagle/server/security/BasicAuthRequestFilter.java b/eagle-server/src/main/java/org/apache/eagle/server/security/BasicAuthRequestFilter.java index 1542505..405bd19 100644 --- a/eagle-server/src/main/java/org/apache/eagle/server/security/BasicAuthRequestFilter.java +++ b/eagle-server/src/main/java/org/apache/eagle/server/security/BasicAuthRequestFilter.java @@ -1,3 +1,19 @@ +/* + * 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.server.security; import com.google.common.base.Optional;
