Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 10702 invoked from network); 25 Jun 2009 17:26:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Jun 2009 17:26:59 -0000 Received: (qmail 38484 invoked by uid 500); 25 Jun 2009 17:27:10 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 38422 invoked by uid 500); 25 Jun 2009 17:27:10 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 38412 invoked by uid 99); 25 Jun 2009 17:27:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 17:27:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 25 Jun 2009 17:27:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4E215238888F; Thu, 25 Jun 2009 17:26:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r788445 - in /geronimo/sandbox/blueprint/blueprint-core/src: main/resources/org/apache/geronimo/blueprint/ test/java/org/apache/geronimo/blueprint/container/ test/java/org/apache/geronimo/blueprint/utils/ test/resources/ Date: Thu, 25 Jun 2009 17:26:44 -0000 To: scm@geronimo.apache.org From: gawor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090625172644.4E215238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gawor Date: Thu Jun 25 17:26:43 2009 New Revision: 788445 URL: http://svn.apache.org/viewvc?rev=788445&view=rev Log: get things compiling at least Removed: geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/utils/TypeUtilsTest.java Modified: geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/container/GenericTypeTest.java geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml Modified: geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd?rev=788445&r1=788444&r2=788445&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd (original) +++ geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd Thu Jun 25 17:26:43 2009 @@ -1,7 +1,7 @@ - + @@ -126,11 +126,11 @@ - + components. If not specified, the global default is "eager". Individual components may override the default @@ -158,24 +158,13 @@ , and components. The + , and components. The normal default is "mandatory", and can be changed by individual service reference components. ]]> - - - - - - - @@ -228,13 +217,13 @@ , , , and . + , , , and . ]]> - + @@ -301,10 +290,10 @@ - + - + @@ -421,7 +410,7 @@ - + @@ -432,14 +421,14 @@ - - + + . This adds in the characteristics that + . This adds in the characteristics that only apply to collections of references (e.g., memberType). ]]> @@ -466,24 +455,24 @@ - + elements. + The Tinlined-reference-list type is used for inlined (i.e. non top level) + elements. ]]> - + - + @@ -500,7 +489,7 @@ - and elements. This type defines all of the + and elements. This type defines all of the characteristics common to both sorts of references. ]]> @@ -578,7 +567,7 @@ or element. The listener + to a or element. The listener object can be specified as a or as an inline or component. Listener events are mapped to the indicated bind or unbind methods. @@ -593,13 +582,13 @@ - + default-initialization attribute and the - initialization attribute. + Tactivation defines the activation type for components. This is used in this + schema by the default-activation attribute and the + activation attribute. ]]> @@ -615,7 +604,7 @@ default-availability attribute and the - and availability attribute. + and availability attribute. ]]> @@ -625,21 +614,6 @@ - - - - compliance atribute. - ]]> - - - - - - - - @@ -691,7 +665,7 @@ - + Modified: geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/container/GenericTypeTest.java URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/container/GenericTypeTest.java?rev=788445&r1=788444&r2=788445&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/container/GenericTypeTest.java (original) +++ geronimo/sandbox/blueprint/blueprint-core/src/test/java/org/apache/geronimo/blueprint/container/GenericTypeTest.java Thu Jun 25 17:26:43 2009 @@ -18,10 +18,7 @@ */ package org.apache.geronimo.blueprint.container; -import java.lang.reflect.Type; - import junit.framework.TestCase; -import org.apache.geronimo.blueprint.utils.TypeUtils; public class GenericTypeTest extends TestCase { @@ -32,8 +29,7 @@ type = GenericType.parse("java.util.Map[]>", getClass().getClassLoader()); System.out.println(type); - Type t = TypeUtils.parseJavaType("java.util.List[]", getClass().getClassLoader()); - type = new GenericType(t); + type = GenericType.parse("java.util.List[]", getClass().getClassLoader()); System.out.println(type.toString()); } Modified: geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml?rev=788445&r1=788444&r2=788445&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml (original) +++ geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml Thu Jun 25 17:26:43 2009 @@ -42,6 +42,6 @@ - + \ No newline at end of file