/* * Copyright (C) 2005-2008 Jive Software. All rights reserved. * * Licensed 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. */ package org.jivesoftware.openfire.sip.tester.security; import java.util.Vector; /** * Used to cache credentials through a call. * * @author Emil Ivov <emcho@dev.java.net> * @version 1.0 */ class CredentialsCacheEntry { // The header that was used last time // AuthorizationHeader authorization = null; UserCredentials userCredentials = null; /** * The transactionHistory list contains transactions where the entry has * been and that had not yet been responded to (or at least the response has * not reached this class). The transactionHistory's elements are Strings * corresponding to branch ids. */ private Vector<String> transactionHistory = new Vector<String>(); /** * Adds the specified branch id to the transaction history list. * * @param requestBranchID the id to add to the list of uncofirmed transactions. */ void processRequest(String requestBranchID) { transactionHistory.add(requestBranchID); } /** * Determines whether these credentials have been used for the specified * transaction. If yes - the transaction is removed and true is returned. * Otherwise we return false. * * @param responseBranchID the branchi id of the response to process. * @return true if this entry hase been used for the transaction. */ boolean processResponse(String responseBranchID) { return transactionHistory.remove(responseBranchID); } }