Java Security getSaslProps()

Here you can find the source of getSaslProps()

Description

get Sasl Props

License

Apache License

Declaration

static Map<String, String> getSaslProps() 

Method Source Code

//package com.java2s;
/*/* w ww .  j a v a  2s.  co  m*/
 Licensed to Diennea S.r.l. under one
 or more contributor license agreements. See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership. Diennea S.r.l. 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.

 */

import java.util.HashMap;
import java.util.Map;
import javax.security.sasl.Sasl;

public class Main {
    static Map<String, String> getSaslProps() {
        Map<String, String> props = new HashMap<String, String>();
        props.put(Sasl.POLICY_NOPLAINTEXT, "true");
        return props;
    }
}

Related

  1. getCommonName(String name)
  2. getDirectiveValue( HashMap directivesMap, String directive, boolean mandatory)
  3. getEntries(Configuration configuration, String section)
  4. getPublicCredential(Class type, Subject subject)
  5. getRefreshTime(KerberosTicket ticket)
  6. getServerPrivateKey(Subject subject, int keyType)
  7. getSubject()
  8. getTicketGrantingTicket(Subject subject)
  9. isDN(String user)