| | |
| | | import org.opends.server.types.InitializationException; |
| | | import org.opends.server.types.ResultCode; |
| | | |
| | | import static org.opends.server.loggers.ErrorLogger.logError; |
| | | import static org.opends.messages.ExtensionMessages.*; |
| | | import static org.opends.server.util.ServerConstants.*; |
| | | import static org.opends.server.util.StaticUtils.*; |
| | |
| | | identityMapper = DirectoryServer.getIdentityMapper(identityMapperDN); |
| | | serverFQDN = getFQDN(configuration); |
| | | LocalizableMessage msg= NOTE_DIGEST_MD5_SERVER_FQDN.get(serverFQDN); |
| | | logError(msg); |
| | | logger.error(msg); |
| | | String QOP = getQOP(configuration); |
| | | saslProps = new HashMap<String,String>(); |
| | | saslProps.put(Sasl.QOP, QOP); |
| | | String realm=getRealm(configuration); |
| | | if(realm != null) { |
| | | msg = INFO_DIGEST_MD5_REALM.get(realm); |
| | | logError(msg); |
| | | logger.error(msg); |
| | | saslProps.put(REALM_PROPERTY, getRealm(configuration)); |
| | | } |
| | | this.configuration = configuration; |
| | |
| | | identityMapper = DirectoryServer.getIdentityMapper(identityMapperDN); |
| | | serverFQDN = getFQDN(configuration); |
| | | LocalizableMessage msg = NOTE_DIGEST_MD5_SERVER_FQDN.get(serverFQDN); |
| | | logError(msg); |
| | | logger.error(msg); |
| | | String QOP = getQOP(configuration); |
| | | saslProps = new HashMap<String,String>(); |
| | | saslProps.put(Sasl.QOP, QOP); |
| | | String realm=getRealm(configuration); |
| | | if(realm != null) { |
| | | msg = INFO_DIGEST_MD5_REALM.get(realm); |
| | | logError(msg); |
| | | logger.error(msg); |
| | | saslProps.put(REALM_PROPERTY, getRealm(configuration)); |
| | | } |
| | | this.configuration = configuration; |