[jboss-cvs] microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test ...

Kabir Khan kkhan at jboss.com
Wed Jul 19 14:19:58 EDT 2006


  User: kkhan   
  Date: 06/07/19 14:19:58

  Modified:    src/resources/org/jboss/test/kernel/deployment/xml/test                       
                        AnnotationWithAttribute.xml
                        ConstructorWithAnnotations.xml
                        PropertyWithAnnotation.xml
                        InstallWithAnnotation.xml
                        ConstructorWithAnnotation.xml
                        BeanWithAnnotations.xml LifecycleWithAnnotation.xml
                        AnnotationWithAttributes.xml
                        LifecycleWithAnnotations.xml
                        ParameterWithAnnotation.xml BeanWithAnnotation.xml
                        PropertyWithAnnotations.xml
                        InstallWithAnnotations.xml
                        ParameterWithAnnotations.xml
  Added:       src/resources/org/jboss/test/kernel/deployment/xml/test                       
                        AnnotationBadNoLeadingAt.xml
                        AnnotationBadNoContent.xml AnnotationSimple.xml
                        AnnotationBadNoContent2.xml
  Removed:     src/resources/org/jboss/test/kernel/deployment/xml/test                       
                        AnnotationWithName.xml Attribute.xml
                        AnnotationBadNoName.xml AttributeBadNoValue.xml
                        AttributeBadNoName.xml
  Log:
  [JBMICROCONT-98] Make the annotation metadata more free format
  
  Revision  Changes    Path
  1.4       +1 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationWithAttribute.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AnnotationWithAttribute.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationWithAttribute.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- AnnotationWithAttribute.xml	31 Jan 2006 14:23:02 -0000	1.3
  +++ AnnotationWithAttribute.xml	19 Jul 2006 18:19:58 -0000	1.4
  @@ -2,8 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
  -      <annotation name="Dummy">
  -         <attribute name="Attribute1" value="Dummy"/>
  -      </annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.AnnotationWithAttribute(attribute=java.lang.Long.class)</annotation>
      </constructor>
   </bean>
  
  
  
  1.3       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ConstructorWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConstructorWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ConstructorWithAnnotations.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ConstructorWithAnnotations.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ ConstructorWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,8 +2,8 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
  -      <annotation name="Annotation1"/>
  -      <annotation name="Annotation2"/>
  -      <annotation name="Annotation3"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
      </constructor>
   </bean>
  
  
  
  1.3       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/PropertyWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PropertyWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/PropertyWithAnnotation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- PropertyWithAnnotation.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ PropertyWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,6 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <property name="PropertyName">
  -      <annotation name="Annotation1"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
      </property>
   </bean>
  
  
  
  1.4       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/InstallWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InstallWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/InstallWithAnnotation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- InstallWithAnnotation.xml	31 Jan 2006 14:03:57 -0000	1.3
  +++ InstallWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.4
  @@ -2,6 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <install method="Dummy">
  -      <annotation name="Annotation1"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
      </install>
   </bean>
  
  
  
  1.3       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ConstructorWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConstructorWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ConstructorWithAnnotation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ConstructorWithAnnotation.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ ConstructorWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,6 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
  -      <annotation name="Annotation1"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
      </constructor>
   </bean>
  
  
  
  1.3       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/BeanWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BeanWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/BeanWithAnnotations.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- BeanWithAnnotations.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ BeanWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
  -   <annotation name="Annotation1"/>
  -   <annotation name="Annotation2"/>
  -   <annotation name="Annotation3"/>
  +   <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +   <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +   <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
   </bean>
  
  
  
  1.3       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/LifecycleWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LifecycleWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/LifecycleWithAnnotation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- LifecycleWithAnnotation.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ LifecycleWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,6 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <create>
  -      <annotation name="Annotation1"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
      </create>
   </bean>
  
  
  
  1.4       +1 -5      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationWithAttributes.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AnnotationWithAttributes.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationWithAttributes.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- AnnotationWithAttributes.xml	31 Jan 2006 14:23:02 -0000	1.3
  +++ AnnotationWithAttributes.xml	19 Jul 2006 18:19:58 -0000	1.4
  @@ -2,10 +2,6 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
  -      <annotation name="Dummy">
  -         <attribute name="Attribute1" value="Dummy"/>
  -         <attribute name="Attribute2" value="Dummy"/>
  -         <attribute name="Attribute3" value="Dummy"/>
  -      </annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.AnnotationWithAttributes(clazz=java.lang.Integer.class, integer=100, str="Annotations are nice")</annotation>
      </constructor>
   </bean>
  
  
  
  1.3       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/LifecycleWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LifecycleWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/LifecycleWithAnnotations.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- LifecycleWithAnnotations.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ LifecycleWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,8 +2,8 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <create>
  -      <annotation name="Annotation1"/>
  -      <annotation name="Annotation2"/>
  -      <annotation name="Annotation3"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
      </create>
   </bean>
  
  
  
  1.3       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ParameterWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ParameterWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ParameterWithAnnotation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ParameterWithAnnotation.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ ParameterWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -3,7 +3,7 @@
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
         <parameter>
  -         <annotation name="Annotation1"/>
  +         <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
         </parameter>
      </constructor>
   </bean>
  
  
  
  1.3       +1 -1      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/BeanWithAnnotation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BeanWithAnnotation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/BeanWithAnnotation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- BeanWithAnnotation.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ BeanWithAnnotation.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
  -   <annotation name="Annotation1"/>
  +   <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
   </bean>
  
  
  
  1.3       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/PropertyWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PropertyWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/PropertyWithAnnotations.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- PropertyWithAnnotations.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ PropertyWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -2,8 +2,8 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <property name="PropertyName">
  -      <annotation name="Annotation1"/>
  -      <annotation name="Annotation2"/>
  -      <annotation name="Annotation3"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
      </property>
   </bean>
  
  
  
  1.4       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/InstallWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InstallWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/InstallWithAnnotations.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- InstallWithAnnotations.xml	31 Jan 2006 14:03:57 -0000	1.3
  +++ InstallWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.4
  @@ -2,8 +2,8 @@
   
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <install method="Dummy">
  -      <annotation name="Annotation1"/>
  -      <annotation name="Annotation2"/>
  -      <annotation name="Annotation3"/>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +      <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
      </install>
   </bean>
  
  
  
  1.3       +3 -3      microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ParameterWithAnnotations.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ParameterWithAnnotations.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/ParameterWithAnnotations.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ParameterWithAnnotations.xml	31 Jan 2006 12:21:35 -0000	1.2
  +++ ParameterWithAnnotations.xml	19 Jul 2006 18:19:58 -0000	1.3
  @@ -3,9 +3,9 @@
   <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
      <constructor>
         <parameter>
  -         <annotation name="Annotation1"/>
  -         <annotation name="Annotation2"/>
  -         <annotation name="Annotation3"/>
  +         <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
  +         <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation2</annotation>
  +         <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation3</annotation>
         </parameter>
      </constructor>
   </bean>
  
  
  
  1.1      date: 2006/07/19 18:19:58;  author: kkhan;  state: Exp;microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationBadNoLeadingAt.xml
  
  Index: AnnotationBadNoLeadingAt.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
     <constructor>
        <annotation>org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
     </constructor>
  </bean>
  
  
  
  1.1      date: 2006/07/19 18:19:58;  author: kkhan;  state: Exp;microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationBadNoContent.xml
  
  Index: AnnotationBadNoContent.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
     <constructor>
        <annotation/>
     </constructor>
  </bean>
  
  
  
  1.1      date: 2006/07/19 18:19:58;  author: kkhan;  state: Exp;microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationSimple.xml
  
  Index: AnnotationSimple.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
     <constructor>
        <annotation>@org.jboss.test.kernel.deployment.xml.support.Annotation1</annotation>
     </constructor>
  </bean>
  
  
  
  1.1      date: 2006/07/19 18:19:58;  author: kkhan;  state: Exp;microkernel/src/resources/org/jboss/test/kernel/deployment/xml/test/AnnotationBadNoContent2.xml
  
  Index: AnnotationBadNoContent2.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <bean xmlns="urn:jboss:bean-deployer:2.0" class="Dummy">
     <constructor>
        <annotation>
        
        </annotation>
     </constructor>
  </bean>
  
  
  



More information about the jboss-cvs-commits mailing list