📄 credentialscache.java
字号:
/**
* $RCSfile$
* $Revision: $
* $Date: $
*
* Copyright (C) 2008 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution, or a commercial license
* agreement with Jive.
*/
package org.jivesoftware.openfire.sip.tester.security;
import java.util.Hashtable;
/**
* The class is used to cache all realms that a certain call has been authorized
* against and all credentials that have been used for each realm. Note that
* rfc3261 suggests keeping callId->credentials mapping where as we map
* realm->credentials. This is done to avoid asking the user for a password
* before each call.
*
* @author Emil Ivov <emcho@dev.java.net>
* @version 1.0
*/
class CredentialsCache {
// Contains call->realms mappings
private Hashtable authenticatedRealms = new Hashtable();
/**
* Cache credentials for the specified call and realm
*
* @param realm the realm that the specify credentials apply to
* @param cacheEntry the credentials
*/
void cacheEntry(String realm, CredentialsCacheEntry cacheEntry) {
authenticatedRealms.put(realm, cacheEntry);
}
/**
* Returns the credentials corresponding to the specified realm or null if
* none could be found.
*
* @param realm the realm that the credentials apply to
* @return the credentials corresponding to the specified realm or null if
* none could be found.
*/
CredentialsCacheEntry get(String realm) {
return (CredentialsCacheEntry)this.authenticatedRealms.get(realm);
}
/**
* Returns the credentials corresponding to the specified realm or null if
* none could be found and removes the entry from the cache.
*
* @param realm
* the realm that the credentials apply to
* @return the credentials corresponding to the specified realm or null if
* none could be found.
*/
CredentialsCacheEntry remove(String realm) {
return (CredentialsCacheEntry)this.authenticatedRealms.remove(realm);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -