DeleteUXFMDialogDefinition.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. =================================================================
  4. * Licensed Materials - Property of IBM
  5. * (c) Copyright IBM Corp. 2014. All rights reserved.
  6. *
  7. * US Government Users Restricted Rights - Use, duplication or
  8. * disclosure restricted by GSA ADP Schedule Contract with IBM
  9. * Corp.
  10. *
  11. * DISCLAIMER OF WARRANTIES. The following [enclosed] code is
  12. * sample code created by IBM Corporation. This sample code is
  13. * not part of any standard or IBM product and is provided to you
  14. * solely for the purpose of assisting you in the development of
  15. * your applications. The code is provided "AS IS", without
  16. * warranty of any kind. IBM shall not be liable for any damages
  17. * arising out of your use of the sample code, even if they have
  18. * been advised of the possibility of such damages.
  19. *
  20. =================================================================
  21. -->
  22. <request type="update" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  23. xsi:noNamespaceSchemaLocation="PCM_2.0.xsd">
  24. <!-- delete all dialog definitions that are currently deployed -->
  25. <portal action="delete">
  26. <dialog-set>
  27. <dialog name="*" />
  28. </dialog-set>
  29. </portal>
  30. <!-- delete a single dialog definition with unique name dialog1 -->
  31. <portal action="delete">
  32. <dialog-set>
  33. <dialog name="dialog1" />
  34. </dialog-set>
  35. </portal>
  36. <!-- delete multiple dialog definitions with unique names dialog1 and dialog2 -->
  37. <portal action="delete">
  38. <dialog-set>
  39. <dialog name="dialog1" />
  40. <dialog name="dialog2" />
  41. </dialog-set>
  42. </portal>
  43. <!-- delete multiple dialog definitions with unique names matching a particular wildcard specification -->
  44. <portal action="delete">
  45. <dialog-set>
  46. <dialog name="dialog*" />
  47. </dialog-set>
  48. </portal>
  49. </request>