Home
last modified time | relevance | path

Searched refs:allMechanisms (Results 1 – 1 of 1) sorted by relevance

/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/java/org/jivesoftware/openfire/sasl/
H A DSaslServerFactoryImpl.java49 private final Set<Mechanism> allMechanisms; field in SaslServerFactoryImpl
53 allMechanisms = new HashSet<>(); in SaslServerFactoryImpl()
54 allMechanisms.add( new Mechanism( "ANONYMOUS", true, true ) ); in SaslServerFactoryImpl()
55 allMechanisms.add( new Mechanism( "PLAIN", false, true ) ); in SaslServerFactoryImpl()
56 allMechanisms.add( new Mechanism( "SCRAM-SHA-1", false, false ) ); in SaslServerFactoryImpl()
57 allMechanisms.add( new Mechanism( "JIVE-SHAREDSECRET", true, false ) ); in SaslServerFactoryImpl()
58 allMechanisms.add( new Mechanism( "EXTERNAL", false, false ) ); in SaslServerFactoryImpl()
130 for ( final Mechanism mechanism : allMechanisms ) in getMechanismNames()