Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A4F290B9 for ; Mon, 28 May 2012 19:56:10 +0000 (UTC) Received: (qmail 75875 invoked by uid 500); 28 May 2012 19:56:09 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 75829 invoked by uid 500); 28 May 2012 19:56:09 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 75820 invoked by uid 99); 28 May 2012 19:56:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 May 2012 19:56:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 May 2012 19:56:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 97B6B2388847; Mon, 28 May 2012 19:55:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1343380 - in /cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core: InMemoryTokenReplayCache.java TokenReplayCacheInMemory.java Date: Mon, 28 May 2012 19:55:46 -0000 To: commits@cxf.apache.org From: owulff@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120528195546.97B6B2388847@eris.apache.org> Author: owulff Date: Mon May 28 19:55:46 2012 New Revision: 1343380 URL: http://svn.apache.org/viewvc?rev=1343380&view=rev Log: TokenReplayCacheInMemory renamed Added: cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/InMemoryTokenReplayCache.java - copied, changed from r1342357, cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/TokenReplayCacheInMemory.java Removed: cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/TokenReplayCacheInMemory.java Copied: cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/InMemoryTokenReplayCache.java (from r1342357, cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/TokenReplayCacheInMemory.java) URL: http://svn.apache.org/viewvc/cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/InMemoryTokenReplayCache.java?p2=cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/InMemoryTokenReplayCache.java&p1=cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/TokenReplayCacheInMemory.java&r1=1342357&r2=1343380&rev=1343380&view=diff ============================================================================== --- cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/TokenReplayCacheInMemory.java (original) +++ cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/InMemoryTokenReplayCache.java Mon May 28 19:55:46 2012 @@ -24,7 +24,7 @@ import java.util.Collections; import java.util.List; //[TODO] add properties TokenReplayCacheExpirationPeriod -public final class TokenReplayCacheInMemory implements TokenReplayCache { +public final class InMemoryTokenReplayCache implements TokenReplayCache { /** * @@ -35,7 +35,7 @@ public final class TokenReplayCacheInMem private List cache; - private TokenReplayCacheInMemory() { + private InMemoryTokenReplayCache() { cache = Collections.synchronizedList(new ArrayList()); } @@ -43,7 +43,7 @@ public final class TokenReplayCacheInMem if (instance != null) { return instance; } - instance = new TokenReplayCacheInMemory(); + instance = new InMemoryTokenReplayCache(); return instance; }