1 19 24 25 package org.netbeans.modules.j2ee.sun.share; 26 27 31 public class TestConstants { 32 33 private TestConstants() { }; 34 35 public static final String validPlan2 = "<deployment-plan><file-entry><name>foobar</name><content>a b c d</content></file-entry></deployment-plan>"; 36 37 public static final String validPlan3 = "<sun-web-app><context-root>fooBar</context-root></sun-web-app>"; 38 39 public static final String invalidPlan1 = "<deployment-plan><name>foobar<content>a b c d</content></file-entry></deployment-plan>"; 40 41 public static final String invalidPlan2 = "<sun-ejb-jar></sun-ejb-jar>"; 42 43 } 44 | Popular Tags |