From jw137282@sac.sfbay.sun.com Fri May  8 00:04:44 2009
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4874h1E028346
	for <LSARC-ext@sac.sfbay.sun.com>; Fri, 8 May 2009 00:04:44 -0700 (PDT)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id n4874ggZ016645;
	Fri, 8 May 2009 15:04:42 +0800 (SGT)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJB00E0DCZRZA00@brm-avmta-1.central.sun.com>; Fri,
 08 May 2009 01:04:39 -0600 (MDT)
Received: from dm-sfbay-02.sfbay.sun.com ([129.146.11.31])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJB00HGFCZRH6C0@brm-avmta-1.central.sun.com>; Fri,
 08 May 2009 01:04:39 -0600 (MDT)
Received: from sac.sfbay.sun.com (sac.SFBay.Sun.COM [129.146.226.132])
	by dm-sfbay-02.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2)
 with ESMTP id n4874boh013550; Fri, 08 May 2009 00:04:37 -0700 (PDT)
Received: from sac.sfbay.sun.com (localhost [127.0.0.1])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4874aHw027438; Fri,
 08 May 2009 00:04:36 -0700 (PDT)
Received: (from jw137282@localhost)
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8/Submit) id n4874aGZ027423; Fri,
 08 May 2009 00:04:36 -0700 (PDT)
Date: Fri, 08 May 2009 00:04:36 -0700 (PDT)
From: James Walker <jw137282@sac.sfbay.sun.com>
Subject: commons-collections [LSARC/2009/296 FastTrack timeout 05/15/2009]
To: LSARC-ext@sun.com
Cc: jin.wan@sun.com
Message-id: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
Status: RO
Content-Length: 4955

I'm sponsoring this familiarity case for James Wan. The requested
release binding is minor. The man page has been posted in the
materials directory and the javadoc tarball will be added.

Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 commons-collections
    1.2. Name of Document Author/Supplier:
	 Author:  James Wan
    1.3  Date of This Document:
	08 May, 2009
4. Technical Description

Summary
=======
The Java Collections Framework was a major addition in JDK 1.2. It added
many powerful data structures that accelerate development of most 
significant Java applications. Since that time it has become the recognised 
standard for collection handling in Java.

Commons-Collections seek to build upon the JDK classes by providing new 
interfaces, implementations and utilities. 

Commons-Collections has many features, including:

* Bag interface for collections that have a number of copies of each object
* Buffer interface for collections that have a well defined removal order, 
  like FIFOs
* BidiMap interface for maps that can be looked up from value to key as well 
  and key to value
* MapIterator interface to provide simple and quick iteration over maps
* Type checking decorators to ensure that only instances of a certain type 
  can be added
* Transforming decorators that alter each object as it is added to the collection
* Composite collections that make multiple collections look like one
* Ordered maps and sets that retain the order elements are added in, including 
  an LRU based map
* Identity map that compares objects based on their identity (==) instead of the 
  equals method
* Reference map that allows keys and/or values to be garbage collected under 
  close control
* Many comparator implementations
* Many iterator implementations
* Adapter classes from array and enumerations to collections
* Utilities to test or create typical set-theory properties of collections 
  such as union, intersection, and closure

Commons-Collections 3.2.1 will be integrated into the SFW consolidation as 
part of this proposal, and will be installed as SUNWcommons-collections.

The Commons-Collections package will contain commonly used versions of 
Commons-Collections. The file name will be used to manage multiple versions, 
for example:

-------------------------------------------------------------------
/usr/share/lib/java/commons-collections.jar     link to most recent version
/usr/share/lib/java/commons-collections-3.2.1.jar
/usr/share/lib/java/commons-collections-3.1.1.jar
-------------------------------------------------------------------

This project requests a minor release binding. 

The Commons-Collections man page is included in the case materials directory.

Dependencies
============

SUNWjunit


Interfaces
==========

Exported Interfaces		Classification	Comment
-------------------		--------------	-------------
SUNWcommons-collections		Uncommitted	Commons-Collections Package

/usr/share/lib/java/commons-collections-3.2.1.jar
				Uncommitted	Commons-Collections Classes
/usr/share/lib/java/commons-collections.jar
				Uncommitted	Symbolic Link

	org.apache.commons.collections 
		Bag 	
		BidiMap 	
		BoundedCollection 	
		BoundedMap 	
		Buffer 	
		Closure 	
		Factory 	
		IterableMap 	
		KeyValue 	
		MapIterator 	
		MultiMap 	
		OrderedBidiMap 	
		OrderedIterator 	
		OrderedMap 	
		OrderedMapIterator 	
		Predicate 	
		PriorityQueue 	
		ResettableIterator 	
		ResettableListIterator 	
		SortedBag 	
		SortedBidiMap 	
		Transformer 	
		Unmodifiable 	

	org.apache.commons.collections.collection 
		CompositeCollection.CollectionMutator 	

	org.apache.commons.collections.functors 
		PredicateDecorator 	

	org.apache.commons.collections.map 
		CompositeMap.MapMutator 	

	org.apache.commons.collections.set 
		CompositeSet.SetMutator 	

Project Private 		Classification	Comment
-------------------		--------------	-------------
non-interface classes 		Project Private	Interal Classes

/usr/share/lib/java/commons-collections-testframework-3.2.1.jar
				Project Private	Testframework Classes
/usr/share/lib/java/commons-collections-testframework.jar
				Project Private Symbolic Link

/usr/share/lib/java/javadoc/commons-collections
				Project Private	Commons-Collections javadoc [2]

/usr/share/doc/commons-collections
				Project Private	Commons-Collections doc directory

Imported Interfaces		Classification		Comment
-------------------		--------------		-------------
SUNWjunit			Uncommitted		LSARC/2008/633
/usr/share/lib/java		Uncommitted		Java Directory


Reference Documents
===================
[1] http://commons.apache.org/collections
[2] http://commons.apache.org/collections/api-release



6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		SFW
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open


From Michael.Kearney@sun.com Fri May  8 07:20:55 2009
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk.SFBay.Sun.COM [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n48EKs9P019524
	for <LSARC-ext@sac.sfbay.sun.com>; Fri, 8 May 2009 07:20:54 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail3mpk.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n48EKprx022606
	for <@sunmail2sca.sfbay.sun.com:LSARC-ext@sun.com>; Fri, 8 May 2009 07:20:54 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJB00B14X6UA800@nwk-avmta-1.sfbay.Sun.COM> for LSARC-ext@sun.com
 (ORCPT LSARC-ext@Sun.Com); Fri, 08 May 2009 07:20:54 -0700 (PDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJB006BIX6SEI30@nwk-avmta-1.sfbay.Sun.COM> for
 LSARC-ext@sun.com (ORCPT LSARC-ext@Sun.Com); Fri,
 08 May 2009 07:20:52 -0700 (PDT)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n48EKpUV013876	for
 <LSARC-ext@Sun.Com>; Fri, 08 May 2009 14:20:51 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7.0-5.01 64bit (built Feb 19 2009))
 id <0KJB00300W8L1600@mail-amer.sun.com> for LSARC-ext@Sun.Com
 (ORCPT LSARC-ext@Sun.Com); Fri, 08 May 2009 08:20:51 -0600 (MDT)
Received: from [129.147.49.125] ([unknown] [129.147.49.125])
 by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7.0-5.01 64bit (built Feb 19 2009))
 with ESMTPSA id <0KJB00GKRX6LD6B0@mail-amer.sun.com>; Fri,
 08 May 2009 08:20:45 -0600 (MDT)
Date: Fri, 08 May 2009 08:20:44 -0600
From: Michael Kearney <Michael.Kearney@sun.com>
Subject: Re: commons-collections [LSARC/2009/296 FastTrack timeout 05/15/2009]
In-reply-to: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
Sender: Michael.Kearney@sun.com
To: James Walker <jw137282@sac.sfbay.sun.com>
Cc: LSARC-ext@sun.com, Jin.Wan@sun.com
Message-id: <4A043FBC.9000605@Sun.com>
MIME-version: 1.0
Content-type: multipart/mixed; boundary="Boundary_(ID_O54wXl/03+VislLUStQEsQ)"
X-PMX-Version: 5.4.1.325704
References: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
User-Agent: Thunderbird 2.0.0.17 (Windows/20080914)
Status: RO
Content-Length: 7358

This is a multi-part message in MIME format.

--Boundary_(ID_O54wXl/03+VislLUStQEsQ)
Content-type: text/html; charset=ISO-8859-1
Content-transfer-encoding: 7BIT

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
+1<br>
<br>
I thought we didn't require a man page for Java jar files?<br>
(Re: trove-2.0.4 [LSARC/2009/262 FastTrack timeout 05/05/2009]) by
Margot Miller<br>
<br>
James Walker wrote:
<blockquote cite="mid:200905080704.n4874aGZ027423@sac.sfbay.sun.com"
 type="cite">
  <pre wrap="">I'm sponsoring this familiarity case for James Wan. The requested
release binding is minor. The man page has been posted in the
materials directory and the javadoc tarball will be added.

Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 commons-collections
    1.2. Name of Document Author/Supplier:
	 Author:  James Wan
    1.3  Date of This Document:
	08 May, 2009
4. Technical Description

Summary
=======
The Java Collections Framework was a major addition in JDK 1.2. It added
many powerful data structures that accelerate development of most 
significant Java applications. Since that time it has become the recognised 
standard for collection handling in Java.

Commons-Collections seek to build upon the JDK classes by providing new 
interfaces, implementations and utilities. 

Commons-Collections has many features, including:

* Bag interface for collections that have a number of copies of each object
* Buffer interface for collections that have a well defined removal order, 
  like FIFOs
* BidiMap interface for maps that can be looked up from value to key as well 
  and key to value
* MapIterator interface to provide simple and quick iteration over maps
* Type checking decorators to ensure that only instances of a certain type 
  can be added
* Transforming decorators that alter each object as it is added to the collection
* Composite collections that make multiple collections look like one
* Ordered maps and sets that retain the order elements are added in, including 
  an LRU based map
* Identity map that compares objects based on their identity (==) instead of the 
  equals method
* Reference map that allows keys and/or values to be garbage collected under 
  close control
* Many comparator implementations
* Many iterator implementations
* Adapter classes from array and enumerations to collections
* Utilities to test or create typical set-theory properties of collections 
  such as union, intersection, and closure

Commons-Collections 3.2.1 will be integrated into the SFW consolidation as 
part of this proposal, and will be installed as SUNWcommons-collections.

The Commons-Collections package will contain commonly used versions of 
Commons-Collections. The file name will be used to manage multiple versions, 
for example:

-------------------------------------------------------------------
/usr/share/lib/java/commons-collections.jar     link to most recent version
/usr/share/lib/java/commons-collections-3.2.1.jar
/usr/share/lib/java/commons-collections-3.1.1.jar
-------------------------------------------------------------------

This project requests a minor release binding. 

The Commons-Collections man page is included in the case materials directory.

Dependencies
============

SUNWjunit


Interfaces
==========

Exported Interfaces		Classification	Comment
-------------------		--------------	-------------
SUNWcommons-collections		Uncommitted	Commons-Collections Package

/usr/share/lib/java/commons-collections-3.2.1.jar
				Uncommitted	Commons-Collections Classes
/usr/share/lib/java/commons-collections.jar
				Uncommitted	Symbolic Link

	org.apache.commons.collections 
		Bag 	
		BidiMap 	
		BoundedCollection 	
		BoundedMap 	
		Buffer 	
		Closure 	
		Factory 	
		IterableMap 	
		KeyValue 	
		MapIterator 	
		MultiMap 	
		OrderedBidiMap 	
		OrderedIterator 	
		OrderedMap 	
		OrderedMapIterator 	
		Predicate 	
		PriorityQueue 	
		ResettableIterator 	
		ResettableListIterator 	
		SortedBag 	
		SortedBidiMap 	
		Transformer 	
		Unmodifiable 	

	org.apache.commons.collections.collection 
		CompositeCollection.CollectionMutator 	

	org.apache.commons.collections.functors 
		PredicateDecorator 	

	org.apache.commons.collections.map 
		CompositeMap.MapMutator 	

	org.apache.commons.collections.set 
		CompositeSet.SetMutator 	

Project Private 		Classification	Comment
-------------------		--------------	-------------
non-interface classes 		Project Private	Interal Classes

/usr/share/lib/java/commons-collections-testframework-3.2.1.jar
				Project Private	Testframework Classes
/usr/share/lib/java/commons-collections-testframework.jar
				Project Private Symbolic Link

/usr/share/lib/java/javadoc/commons-collections
				Project Private	Commons-Collections javadoc [2]

/usr/share/doc/commons-collections
				Project Private	Commons-Collections doc directory

Imported Interfaces		Classification		Comment
-------------------		--------------		-------------
SUNWjunit			Uncommitted		LSARC/2008/633
/usr/share/lib/java		Uncommitted		Java Directory


Reference Documents
===================
[1] <a class="moz-txt-link-freetext" href="http://commons.apache.org/collections">http://commons.apache.org/collections</a>
[2] <a class="moz-txt-link-freetext" href="http://commons.apache.org/collections/api-release">http://commons.apache.org/collections/api-release</a>



6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		SFW
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open


  </pre>
</blockquote>
<br>
<div class="moz-signature">-- <br>
<table border="0" cellpadding="0" cellspacing="0" width="519">
  <tbody>
    <tr valign="top">
      <td height="121" width="98"><a href="http://www.sun.com"><img
 moz-do-not-send="true" src="http://www.sun.com/emrkt/sigs/6h_top.gif"
 border="0" height="92" width="98"></a></td>
      <td style="font-family: Arial; font-size: 10px;" height="121"
 width="249"><b> Michael Kearney </b><br>
Staff Software Engineer<br>
      <br>
      <b>Sun Microsystems, Inc.</b><br>
MS UBRM05-390, 500 Eldorado Blvd<br>
Broomfield, CO 80021 US<br>
Phone 303-272-2402<br>
Fax 303-272-6554<br>
Email <a class="moz-txt-link-abbreviated" href="mailto:Michael.Kearney@Sun.COM">Michael.Kearney@Sun.COM</a><br>
      </td>
      <td style="font-family: Arial; font-size: 10px;" width="172"><img
 moz-do-not-send="true" src="http://www.sun.com/emrkt/sigs/q01.gif"
 height="118" width="172"></td>
    </tr>
  </tbody>
</table>
</div>
</body>
</html>

--Boundary_(ID_O54wXl/03+VislLUStQEsQ)
Content-type: text/x-vcard; name=Michael_Kearney.vcf; charset=utf-8
Content-transfer-encoding: 7BIT
Content-disposition: attachment; filename=Michael_Kearney.vcf

begin:vcard
fn:Michael Kearney
n:Kearney;Michael
org:Sun Microsystems, Inc.;Archive Core Engineering
adr:500 Eldorado Blvd.;;Mailstop UBRM05-390;Broomfield;CO;80021;US
email;internet:Michael.Kearney@Sun.com
title:Staff Software Engineer
tel;work:303-272-2402
tel;fax:303-272-6554
x-mozilla-html:TRUE
url:http://www.sun.com/
version:2.1
end:vcard


--Boundary_(ID_O54wXl/03+VislLUStQEsQ)--

From margot.miller@sun.com Tue May 19 09:18:16 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JGIFSe014769
	for <LSARC-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 09:18:16 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n4JGI1Sr028537;
	Tue, 19 May 2009 17:18:13 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW00029FYAM800@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 09:18:10 -0700 (PDT)
Received: from jurassic-x4600.sfbay.sun.com ([129.146.17.63])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW00B8QFY8FYE0@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 09:18:08 -0700 (PDT)
Received: from [10.7.250.88]
 (punchin-client-10-7-250-88.SFBay.Sun.COM [10.7.250.88])
	by jurassic-x4600.sfbay.sun.com (8.14.3+Sun/8.14.3)
 with ESMTP id n4JGI6jK189559; Tue, 19 May 2009 09:18:07 -0700 (PDT)
Date: Tue, 19 May 2009 09:18:06 -0700
From: margot <margot.miller@sun.com>
Subject: Re: commons-collections [LSARC/2009/296 FastTrack timeout 05/15/2009]
In-reply-to: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
To: James Walker <jw137282@sac.sfbay.sun.com>
Cc: LSARC-ext@sun.com, jin.wan@sun.com
Message-id: <4A12DBBE.40606@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
User-Agent: Thunderbird 2.0.0.17 (X11/20081023)
Status: RO
Content-Length: 5835


The JDK needs to be in the imported interface table.
And I suppose there is no problem with it running
on whatever JDK is on the system?

I don't think you need to put the javadocs in the interface
table.  Just a notation that javadocs are being delivered
would be good.  In any case, "Project Private" doesn't
seem right for documentation.

/usr/share/lib/java/javadoc/commons-collections				Project Private	Commons-Collections javadoc [2]

Thanks
Margot


James Walker wrote:
> I'm sponsoring this familiarity case for James Wan. The requested
> release binding is minor. The man page has been posted in the
> materials directory and the javadoc tarball will be added.
>
> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
> This information is Copyright 2009 Sun Microsystems
> 1. Introduction
>     1.1. Project/Component Working Name:
> 	 commons-collections
>     1.2. Name of Document Author/Supplier:
> 	 Author:  James Wan
>     1.3  Date of This Document:
> 	08 May, 2009
> 4. Technical Description
>
> Summary
> =======
> The Java Collections Framework was a major addition in JDK 1.2. It added
> many powerful data structures that accelerate development of most 
> significant Java applications. Since that time it has become the recognised 
> standard for collection handling in Java.
>
> Commons-Collections seek to build upon the JDK classes by providing new 
> interfaces, implementations and utilities. 
>
> Commons-Collections has many features, including:
>
> * Bag interface for collections that have a number of copies of each object
> * Buffer interface for collections that have a well defined removal order, 
>   like FIFOs
> * BidiMap interface for maps that can be looked up from value to key as well 
>   and key to value
> * MapIterator interface to provide simple and quick iteration over maps
> * Type checking decorators to ensure that only instances of a certain type 
>   can be added
> * Transforming decorators that alter each object as it is added to the collection
> * Composite collections that make multiple collections look like one
> * Ordered maps and sets that retain the order elements are added in, including 
>   an LRU based map
> * Identity map that compares objects based on their identity (==) instead of the 
>   equals method
> * Reference map that allows keys and/or values to be garbage collected under 
>   close control
> * Many comparator implementations
> * Many iterator implementations
> * Adapter classes from array and enumerations to collections
> * Utilities to test or create typical set-theory properties of collections 
>   such as union, intersection, and closure
>
> Commons-Collections 3.2.1 will be integrated into the SFW consolidation as 
> part of this proposal, and will be installed as SUNWcommons-collections.
>
> The Commons-Collections package will contain commonly used versions of 
> Commons-Collections. The file name will be used to manage multiple versions, 
> for example:
>
> -------------------------------------------------------------------
> /usr/share/lib/java/commons-collections.jar     link to most recent version
> /usr/share/lib/java/commons-collections-3.2.1.jar
> /usr/share/lib/java/commons-collections-3.1.1.jar
> -------------------------------------------------------------------
>
> This project requests a minor release binding. 
>
> The Commons-Collections man page is included in the case materials directory.
>
> Dependencies
> ============
>
> SUNWjunit
>
>
> Interfaces
> ==========
>
> Exported Interfaces		Classification	Comment
> -------------------		--------------	-------------
> SUNWcommons-collections		Uncommitted	Commons-Collections Package
>
> /usr/share/lib/java/commons-collections-3.2.1.jar
> 				Uncommitted	Commons-Collections Classes
> /usr/share/lib/java/commons-collections.jar
> 				Uncommitted	Symbolic Link
>
> 	org.apache.commons.collections 
> 		Bag 	
> 		BidiMap 	
> 		BoundedCollection 	
> 		BoundedMap 	
> 		Buffer 	
> 		Closure 	
> 		Factory 	
> 		IterableMap 	
> 		KeyValue 	
> 		MapIterator 	
> 		MultiMap 	
> 		OrderedBidiMap 	
> 		OrderedIterator 	
> 		OrderedMap 	
> 		OrderedMapIterator 	
> 		Predicate 	
> 		PriorityQueue 	
> 		ResettableIterator 	
> 		ResettableListIterator 	
> 		SortedBag 	
> 		SortedBidiMap 	
> 		Transformer 	
> 		Unmodifiable 	
>
> 	org.apache.commons.collections.collection 
> 		CompositeCollection.CollectionMutator 	
>
> 	org.apache.commons.collections.functors 
> 		PredicateDecorator 	
>
> 	org.apache.commons.collections.map 
> 		CompositeMap.MapMutator 	
>
> 	org.apache.commons.collections.set 
> 		CompositeSet.SetMutator 	
>
> Project Private 		Classification	Comment
> -------------------		--------------	-------------
> non-interface classes 		Project Private	Interal Classes
>
> /usr/share/lib/java/commons-collections-testframework-3.2.1.jar
> 				Project Private	Testframework Classes
> /usr/share/lib/java/commons-collections-testframework.jar
> 				Project Private Symbolic Link
>
> /usr/share/lib/java/javadoc/commons-collections
> 				Project Private	Commons-Collections javadoc [2]
>
> /usr/share/doc/commons-collections
> 				Project Private	Commons-Collections doc directory
>
> Imported Interfaces		Classification		Comment
> -------------------		--------------		-------------
> SUNWjunit			Uncommitted		LSARC/2008/633
> /usr/share/lib/java		Uncommitted		Java Directory
>
>
> Reference Documents
> ===================
> [1] http://commons.apache.org/collections
> [2] http://commons.apache.org/collections/api-release
>
>
>
> 6. Resources and Schedule
>     6.4. Steering Committee requested information
>    	6.4.1. Consolidation C-team Name:
> 		SFW
>     6.5. ARC review type: FastTrack
>     6.6. ARC Exposure: open
>
> _______________________________________________
> opensolaris-arc mailing list
> opensolaris-arc@opensolaris.org
>   


From James.Walker@sun.com Tue May 19 10:00:25 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JH0Ong017574
	for <LSARC-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 10:00:24 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n4JH0MoE004969
	for <@sunmail2sca.sfbay.sun.com:LSARC-ext@sun.com>; Tue, 19 May 2009 11:00:24 -0600 (MDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW0072ZHWNYQ00@nwk-avmta-1.sfbay.Sun.COM> for LSARC-ext@sun.com
 (ORCPT LSARC-ext@sun.com); Tue, 19 May 2009 10:00:23 -0700 (PDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW006TJHWLZW00@nwk-avmta-1.sfbay.Sun.COM> for
 LSARC-ext@sun.com (ORCPT LSARC-ext@sun.com); Tue,
 19 May 2009 10:00:21 -0700 (PDT)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n4JH0LCa015184	for
 <LSARC-ext@sun.com>; Tue, 19 May 2009 17:00:21 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KJW00800E0VHJ00@mail-amer.sun.com> for LSARC-ext@sun.com
 (ORCPT LSARC-ext@sun.com); Tue, 19 May 2009 11:00:21 -0600 (MDT)
Received: from jwmac.local ([unknown] [129.150.33.240])
 by mail-amer.sun.com (Sun Java(tm) System Messaging Server 7u2-7.02 64bit
 (built Apr 16 2009)) with ESMTPSA id <0KJW00HEEHWBRXA0@mail-amer.sun.com>; Tue,
 19 May 2009 11:00:12 -0600 (MDT)
Date: Tue, 19 May 2009 11:00:11 -0600
From: Jim Walker <James.Walker@sun.com>
Subject: Re: commons-collections [LSARC/2009/296 FastTrack timeout 05/15/2009]
In-reply-to: <4A12DBBE.40606@sun.com>
Sender: James.Walker@sun.com
To: margot <Margot.Miller@sun.com>
Cc: LSARC-ext@sun.com, Jin.Wan@sun.com
Reply-to: James.Walker@sun.com
Message-id: <4A12E59B.9000701@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
 <4A12DBBE.40606@sun.com>
User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302)
Status: RO
Content-Length: 545

margot wrote:
> 
> The JDK needs to be in the imported interface table.
> And I suppose there is no problem with it running
> on whatever JDK is on the system?
> 
> I don't think you need to put the javadocs in the interface
> table.  Just a notation that javadocs are being delivered
> would be good.  In any case, "Project Private" doesn't
> seem right for documentation.
> 
> /usr/share/lib/java/javadoc/commons-collections                Project 
> Private    Commons-Collections javadoc [2]
> 

I agree. I'll make the changes.

Cheers,
Jim

From Richard.Matthews@Sun.com Tue May 19 10:08:12 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JH8BNO018298
	for <LSARC-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 10:08:12 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n4JH7odq008352;
	Tue, 19 May 2009 18:08:11 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW00911I9K8000@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 10:08:08 -0700 (PDT)
Received: from brmea-mail-4.sun.com ([192.18.98.36])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW0066SI9HZS20@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 10:08:06 -0700 (PDT)
Received: from fe-amer-10.sun.com ([192.18.109.80])
 by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n4JH85hS026095; Tue,
 19 May 2009 17:08:05 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KJW00200GU47600@mail-amer.sun.com>; Tue, 19 May 2009 11:08:05 -0600 (MDT)
Received: from [129.152.9.11] ([unknown] [129.152.9.11])
 by mail-amer.sun.com (Sun Java(tm) System Messaging Server 7u2-7.02 64bit
 (built Apr 16 2009)) with ESMTPSA id <0KJW008FSI9AKA30@mail-amer.sun.com>; Tue,
 19 May 2009 11:07:58 -0600 (MDT)
Date: Tue, 19 May 2009 12:07:58 -0500
From: Rick Matthews <Richard.Matthews@Sun.com>
Subject: LSARC/2009/296 FastTrack timeout 05/15/2009 - Drools
Sender: Richard.Matthews@Sun.com
To: lsarc-ext@Sun.com, Drools-team@Sun.com
Reply-to: Richard.Matthews@Sun.com
Message-id: <4A12E76E.1090807@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
User-Agent: Thunderbird 2.0.0.19 (X11/20090110)
Status: RO
Content-Length: 629

With the addition of JDK level (1.5 and above, if I recall properly),
this case has reached its timeout and all issues addressed.

The case is closed approved.

-- 
---------------------------------------------------------------------
Rick Matthews                           email: Rick.Matthews@sun.com
Sun Microsystems, Inc.                  phone:+1(651) 554-1518
1270 Eagan Industrial Road              phone(internal): 54418
Suite 160                               fax:  +1(651) 554-1540
Eagan, MN 55121-1231 USA                main: +1(651) 554-1500		
---------------------------------------------------------------------


From James.Walker@sun.com Tue Jun  2 10:26:41 2009
Received: from sunmail2sca.sfbay.sun.com (sunmail2sca.SFBay.Sun.COM [129.145.155.234])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n52HQfi5026249
	for <LSARC-ext@sac.sfbay.sun.com>; Tue, 2 Jun 2009 10:26:41 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail2sca.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n52HQd43001522
	for <@sunmail2sca.sfbay.sun.com:LSARC-ext@sun.com>; Tue, 2 Jun 2009 10:26:41 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KKM00K0VGGGXM00@nwk-avmta-1.sfbay.Sun.COM> for LSARC-ext@sun.com
 (ORCPT LSARC-ext@Sun.Com); Tue, 02 Jun 2009 10:26:40 -0700 (PDT)
Received: from brmea-mail-1.sun.com ([192.18.98.31])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KKM009TPGGF87E0@nwk-avmta-1.sfbay.Sun.COM> for
 LSARC-ext@sun.com (ORCPT LSARC-ext@Sun.Com); Tue,
 02 Jun 2009 10:26:39 -0700 (PDT)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n52HQdub017974	for
 <LSARC-ext@Sun.Com>; Tue, 02 Jun 2009 17:26:39 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KKM00K00EQ4VT00@mail-amer.sun.com> for LSARC-ext@Sun.Com
 (ORCPT LSARC-ext@Sun.Com); Tue, 02 Jun 2009 11:26:39 -0600 (MDT)
Received: from 216.112.108.64.ptr.us.xo.net ([unknown] [129.150.35.59])
 by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 with ESMTPSA id <0KKM00CQ2GGEGT80@mail-amer.sun.com> for LSARC-ext@Sun.Com
 (ORCPT LSARC-ext@Sun.Com); Tue, 02 Jun 2009 11:26:39 -0600 (MDT)
Date: Tue, 02 Jun 2009 11:26:37 -0600
From: Jim Walker <James.Walker@sun.com>
Subject: Re: commons-collections [LSARC/2009/296 FastTrack timeout 05/15/2009]
In-reply-to: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
Sender: James.Walker@sun.com
To: LSARC-ext@sun.com
Cc: Jin.Wan@sun.com
Reply-to: James.Walker@sun.com
Message-id: <4A2560CD.6000200@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200905080704.n4874aGZ027423@sac.sfbay.sun.com>
User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302)
Status: RO
Content-Length: 123

All issues have been addressed, and the timeout has been
reached. I'm marking this case case closed approved.

Cheers,
Jim

