From 6999b81c8d511bb38f946d6df4eefd39e66051fd Mon Sep 17 00:00:00 2001 From: Jyoti Wadhwani Date: Tue, 7 Aug 2018 14:50:57 -0700 Subject: [PATCH 1/2] add license header to Dummy Login Module --- .../app/security/DummyLoginModule.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wherehows-frontend/app/security/DummyLoginModule.java b/wherehows-frontend/app/security/DummyLoginModule.java index f28ccd70a0..8b71c07e5f 100644 --- a/wherehows-frontend/app/security/DummyLoginModule.java +++ b/wherehows-frontend/app/security/DummyLoginModule.java @@ -1,3 +1,17 @@ +/** + * Copyright 2015 LinkedIn Corp. All rights reserved. + * + * Licensed 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. + */ + package security; import javax.security.auth.Subject; From 96d01eaea7fca897913cc9eb00c284355e080a06 Mon Sep 17 00:00:00 2001 From: Jyoti Wadhwani Date: Tue, 7 Aug 2018 14:52:00 -0700 Subject: [PATCH 2/2] add license header to test file --- wherehows-frontend/test/DummyLoginModuleTest.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/wherehows-frontend/test/DummyLoginModuleTest.java b/wherehows-frontend/test/DummyLoginModuleTest.java index bc6ab00749..be4db210c9 100644 --- a/wherehows-frontend/test/DummyLoginModuleTest.java +++ b/wherehows-frontend/test/DummyLoginModuleTest.java @@ -1,3 +1,16 @@ +/** + * Copyright 2015 LinkedIn Corp. All rights reserved. + * + * Licensed 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. + */ import com.sun.security.auth.callback.TextCallbackHandler; import java.util.HashMap; import javax.security.auth.login.LoginException;