Searched refs:man (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/tests/quicklook/admin/src/test/admin/
H A DJvmOptionTests.java66 Manifest man = super.invokeURLAndGetManifest(up);
67 GeneralUtils.handleManifestFailure(man);
72 Manifest man = runListJoesCommand();
73 GeneralUtils.handleManifestFailure(man);
75 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
87 Manifest man = super.invokeURLAndGetManifest(up);
88 GeneralUtils.handleManifestFailure(man);
93 Manifest man = runListJoesCommand();
94 GeneralUtils.handleManifestFailure(man);
96 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtil
[all...]
H A DJdbcConnectionPoolTests.java75 Manifest man = super.invokeURLAndGetManifest(up);
76 GeneralUtils.handleManifestFailure(man);
84 Manifest man = super.invokeURLAndGetManifest(up);
85 GeneralUtils.handleManifestFailure(man);
91 Manifest man = runListPoolsCommand();
92 GeneralUtils.handleManifestFailure(man);
94 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
107 Manifest man = super.invokeURLAndGetManifest(up);
108 GeneralUtils.handleManifestFailure(man);
113 Manifest man
[all...]
H A DWebtierTests.java74 Manifest man = super.invokeURLAndGetManifest(up);
75 String ec = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.EXIT_CODE);
76 GeneralUtils.handleManifestFailure(man);
90 Manifest man = super.invokeURLAndGetManifest(up);
91 String ec = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.EXIT_CODE);
92 GeneralUtils.handleManifestFailure(man);
104 Manifest man = runListHttpListenersCommand();
105 GeneralUtils.handleManifestFailure(man);
107 return GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
117 Manifest man
[all...]
H A DBaseAsadminTest.java77 Manifest man = new Manifest(uc.getInputStream());
78 return ( man );
/glassfish-3.1.2/tests/quicklook/admin/src/test/admin/util/
H A DGeneralUtils.java117 public static String getValueForTypeFromManifest(Manifest man, AsadminManifestKeyType key) { argument
118 if (man == null)
122 Attributes ma = man.getMainAttributes();
135 public static void handleManifestFailure(Manifest man) { argument
136 String ec = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.EXIT_CODE);
139 String cause = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CAUSE);
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/
H A DEnhancerClassLoader.java578 Manifest man = res.getManifest();
588 ok = (man == null) || !isSealed(pkgname, man);
594 if (man != null) {
595 definePackage(pkgname, man, url);
672 private boolean isSealed(String name, Manifest man) { argument
674 Attributes attr = man.getAttributes(path);
680 if ((attr = man.getMainAttributes()) != null) {
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/loader/
H A DASURLClassLoader.java604 Manifest man = jar.getManifest();
605 if (man == null) return;
608 String cp = man.getMainAttributes().getValue(
/glassfish-3.1.2/web/war-util/src/main/java/org/glassfish/web/loader/
H A DWebappClassLoader.java2399 protected boolean isPackageSealed(String name, Manifest man) { argument
2402 Attributes attr = man.getAttributes(path);
2408 if ((attr = man.getMainAttributes()) != null) {

Completed in 38 milliseconds