Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 79450 invoked from network); 22 Nov 2004 22:50:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 22 Nov 2004 22:50:56 -0000 Received: (qmail 46094 invoked by uid 500); 22 Nov 2004 22:50:53 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 46017 invoked by uid 500); 22 Nov 2004 22:50:52 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 46004 invoked by uid 500); 22 Nov 2004 22:50:52 -0000 Received: (qmail 45998 invoked by uid 99); 22 Nov 2004 22:50:52 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 22 Nov 2004 14:50:52 -0800 Received: (qmail 79409 invoked by uid 1289); 22 Nov 2004 22:50:51 -0000 Date: 22 Nov 2004 22:50:51 -0000 Message-ID: <20041122225051.79408.qmail@minotaur.apache.org> From: rdonkin@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/logging/optional/src/test/org/apache/commons/logging IFactoryCreator.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rdonkin 2004/11/22 14:50:51 Added: logging/optional/src/test/org/apache/commons/logging IFactoryCreator.java Log: Improved test cases for WeakHashMap classloading. Contributed by Brian Stansberry. Revision Changes Path 1.1 jakarta-commons/logging/optional/src/test/org/apache/commons/logging/IFactoryCreator.java Index: IFactoryCreator.java =================================================================== /* * Copyright 2004 The Apache Software Foundation. * * 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.apache.commons.logging; import java.lang.ref.WeakReference; /** * Interface implemented by SubDeploymentClass. The LogFactoryTest's * IsolatedClassLoader will delegate loading of this interface to the * test runner's classloader, so the test can interact with * SubDeploymentClass via this interface. * * @author bstansberry * * @see LogFactoryTest */ public interface IFactoryCreator { WeakReference getWeakFactory(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org