From: Boleslaw D. <bd...@o2...> - 2006-07-07 12:24:07
|
User: bdaw Date: 06/07/07 08:23:50 Modified: portlet/src/resources/test/deployment portlet.xml Log: - added parsing of "security-constraint" for portlet.xml - hopefully didn't break anything :) - some additional testing for this Revision Changes Path 1.5 +18 -0 jboss-portal/portlet/src/resources/test/deployment/portlet.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: portlet.xml =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/resources/test/deployment/portlet.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- portlet.xml 11 May 2006 19:23:44 -0000 1.4 +++ portlet.xml 7 Jul 2006 12:23:50 -0000 1.5 @@ -241,6 +241,24 @@ </portlet> --> + <security-constraint> + <portlet-collection> + <portlet-name>Portlet1</portlet-name> + </portlet-collection> + <user-data-constraint> + <transport-guarantee>CONFIDENTIAL</transport-guarantee> + </user-data-constraint> + </security-constraint> + <security-constraint> + <portlet-collection> + <portlet-name>Portlet1</portlet-name> + <portlet-name>Portlet4</portlet-name> + </portlet-collection> + <user-data-constraint> + <transport-guarantee>INTEGRAL</transport-guarantee> + </user-data-constraint> + </security-constraint> + <custom-portlet-mode> <description>first mode</description> <description xml:lang="fr">premier mode</description> |