Methods Summary |
---|
protected java.lang.ClassLoader | createClassLoader()
return application.getClassLoader();
|
protected java.lang.String | getArchiveUri()
return frameworkContext.getJarFileName();
|
protected java.lang.String | getClassPath()
return null;
|
protected java.lang.String[] | getDDString()
String dd[] = {"META-INF/sun-application.xml", // NOI18N
"META-INF/application.xml"}; // NOI18N
return dd;
|
public com.sun.enterprise.deployment.Descriptor | getDescriptor()
return application;
|
public void | verify()Responsible for running application based verifier tests on the the web archive.
Called from runVerifier in {@link BaseVerifier} class.
if (areTestsNotRequired(frameworkContext.isApp()) &&
areTestsNotRequired(frameworkContext.isPersistenceUnits()))
return;
preVerification();
if(frameworkContext.isPortabilityMode())
application.setClassLoader(context.getClassLoader());
CheckMgr checkMgrImpl = new AppCheckMgrImpl(frameworkContext);
verify(application, checkMgrImpl);
|