[DMAAP-KAFKA] Release image 1.1.0
[dmaap/kafka11aaf.git] / src / main / java / org / onap / dmaap / kafkaauthorize / PlainSaslServerProvider1.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  Modification copyright (C) 2021 Nordix Foundation.
7  *  ================================================================================
8  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  you may not use this file except in compliance with the License.
10  *  You may obtain a copy of the License at
11  *        http://www.apache.org/licenses/LICENSE-2.0
12 *  
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============LICENSE_END=========================================================
19  *  
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.kafkaauthorize;
23
24 import java.security.Provider;
25 import java.security.Security;
26
27 import org.onap.dmaap.kafkaauthorize.PlainSaslServer1.PlainSaslServerFactory1;
28
29 public class PlainSaslServerProvider1 extends Provider {
30
31         private static final long serialVersionUID = 1L;
32
33         protected PlainSaslServerProvider1() {
34                 super("Simple SASL/PLAIN Server Provider", 1.0, "Simple SASL/PLAIN Server Provider for Kafka");
35                 super.put("SaslServerFactory." + PlainSaslServer1.PLAIN_MECHANISM, PlainSaslServerFactory1.class.getName());
36         }
37
38         public static void initialize() {
39                 Security.insertProviderAt(new PlainSaslServerProvider1(),1);
40         }
41 }
42