Added AAF plugin
[dmaap/kafka11aaf.git] / src / main / java / org / onap / dmaap / kafkaAuthorize / PlainLoginModule1.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  
20  *******************************************************************************/
21 package org.onap.dmaap.kafkaAuthorize;
22
23 import java.util.Map;
24
25 import javax.security.auth.Subject;
26 import javax.security.auth.callback.CallbackHandler;
27 import javax.security.auth.login.LoginException;
28 import javax.security.auth.spi.LoginModule;
29
30 public class PlainLoginModule1 implements LoginModule {
31
32         private static final String USERNAME_CONFIG = "username";
33         private static final String PASSWORD_CONFIG = "password";
34
35         static {
36                 PlainSaslServerProvider1.initialize();
37         }
38
39         @Override
40         public void initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState,
41                         Map<String, ?> options) {
42                 String username = (String) options.get(USERNAME_CONFIG);
43                 if (username != null)
44                         subject.getPublicCredentials().add(username);
45                 String password = (String) options.get(PASSWORD_CONFIG);
46                 if (password != null)
47                         subject.getPrivateCredentials().add(password);
48
49         }
50
51         @Override
52         public boolean login() throws LoginException {
53                 return true;
54         }
55
56         @Override
57         public boolean logout() throws LoginException {
58                 return true;
59         }
60
61         @Override
62         public boolean commit() throws LoginException {
63                 return true;
64         }
65
66         @Override
67         public boolean abort() throws LoginException {
68                 return false;
69         }
70 }