You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by as...@apache.org on 2018/08/22 19:29:46 UTC

portals-pluto git commit: PLUTO-714 AnnotationPortletArtifactValidityTests redundantly specify the @PortletApplication annotation 4 times

Repository: portals-pluto
Updated Branches:
  refs/heads/master 1ba399878 -> d256e898c


PLUTO-714 AnnotationPortletArtifactValidityTests redundantly specify the @PortletApplication annotation 4 times


Project: http://git-wip-us.apache.org/repos/asf/portals-pluto/repo
Commit: http://git-wip-us.apache.org/repos/asf/portals-pluto/commit/d256e898
Tree: http://git-wip-us.apache.org/repos/asf/portals-pluto/tree/d256e898
Diff: http://git-wip-us.apache.org/repos/asf/portals-pluto/diff/d256e898

Branch: refs/heads/master
Commit: d256e898c52b8a6b850b6ca3062898b24d19ab30
Parents: 1ba3998
Author: Neil Griffin <ne...@gmail.com>
Authored: Wed Aug 22 15:29:20 2018 -0400
Committer: Neil Griffin <ne...@gmail.com>
Committed: Wed Aug 22 15:29:20 2018 -0400

----------------------------------------------------------------------
 ...lidityTests_SPEC3_20_ParameterArtifacts.java | 32 ++++++++++++++++----
 1 file changed, 26 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/portals-pluto/blob/d256e898/portlet-tck_3.0/V3AnnotationPortletArtifactValidityTests/src/main/java/javax/portlet/tck/portlets/AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts.java
----------------------------------------------------------------------
diff --git a/portlet-tck_3.0/V3AnnotationPortletArtifactValidityTests/src/main/java/javax/portlet/tck/portlets/AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts.java b/portlet-tck_3.0/V3AnnotationPortletArtifactValidityTests/src/main/java/javax/portlet/tck/portlets/AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts.java
index 028b837..759b130 100644
--- a/portlet-tck_3.0/V3AnnotationPortletArtifactValidityTests/src/main/java/javax/portlet/tck/portlets/AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts.java
+++ b/portlet-tck_3.0/V3AnnotationPortletArtifactValidityTests/src/main/java/javax/portlet/tck/portlets/AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts.java
@@ -79,12 +79,32 @@ import static javax.portlet.tck.portlets.Utils.RESOURCEPARAMETERSARTIFACTKEY;
  */
 
 @PortletApplication(
-   events = @EventDefinition(
-      qname = @PortletQName(
-         localPart = "AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts", 
-         namespaceURI = "http://www.apache.org/portals/pluto/portlet-tck_3.0"
-      ), payloadType = java.lang.String.class
-   )
+   events = {
+       @EventDefinition(
+           qname = @PortletQName(
+               localPart = "AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts",
+               namespaceURI = "http://www.apache.org/portals/pluto/portlet-tck_3.0"
+           ), payloadType = java.lang.String.class
+       ),
+       @EventDefinition(
+           qname = @PortletQName(
+               localPart = "AnnotationPortletArtifactValidityTests_SPEC3_20_PortletArtifacts",
+               namespaceURI = "http://www.apache.org/portals/pluto/portlet-tck_3.0"
+           ), payloadType = java.lang.String.class
+       ),
+       @EventDefinition(
+           qname = @PortletQName(
+               localPart = "AnnotationPortletArtifactValidityTests_SPEC3_20_RequestArtifacts",
+               namespaceURI = "http://www.apache.org/portals/pluto/portlet-tck_3.0"
+           ), payloadType = java.lang.String.class
+       ),
+       @EventDefinition(
+           qname = @PortletQName(
+             localPart = "AnnotationPortletArtifactValidityTests_SPEC3_20_ResponseArtifacts",
+             namespaceURI = "http://www.apache.org/portals/pluto/portlet-tck_3.0"
+          ), payloadType = java.lang.String.class
+       )
+   }
 )
 public class AnnotationPortletArtifactValidityTests_SPEC3_20_ParameterArtifacts {