Methods Summary |
---|
public com.sun.enterprise.deployment.deploy.shared.AbstractArchive | getAbstractArchive()
return abstractArchive;
|
public com.sun.enterprise.deployment.Application | getApplication()
return application;
|
public java.util.List | getClassPath()
return classPath;
|
public java.lang.String | getConfigDirStr()
return configDirStr;
|
public java.lang.String | getDomainDir()
return domainDir;
|
public java.lang.String | getExplodedArchivePath()
return explodedArchivePath;
|
public java.lang.String | getExtDir()
return extDir;
|
public java.lang.String | getJarFileName()get the jar file name to be verifier
return jarFileName;
|
public java.lang.String | getJavaEEVersion()
return javaEEVersion;
|
public java.io.File | getJspOutDir()
return jspOutDir;
|
public java.lang.String | getOutputDirName()
return outputDirName;
|
public int | getReportLevel()
return reportLevel;
|
public ResultManager | getResultManager()
return resultManager;
|
public boolean | isApp()
return app;
|
public boolean | isAppClient()
return appClient;
|
public boolean | isBackend()
return isBackend;
|
public boolean | isConnector()
return connector;
|
public boolean | isEjb()
return ejb;
|
public boolean | isPartition()
return partition;
|
public boolean | isPersistenceUnits()
return persistenceUnits;
|
public boolean | isPortabilityMode()
return isPortabilityMode;
|
public boolean | isUseTimeStamp()
return useTimeStamp;
|
public boolean | isUsingGui()
return usingGui;
|
public boolean | isWeb()
return web;
|
public boolean | isWebServices()
return webServices;
|
public boolean | isWebServicesClient()
return webServicesClient;
|
public void | setAbstractArchive(com.sun.enterprise.deployment.deploy.shared.AbstractArchive abstractArchive)
this.abstractArchive = abstractArchive;
|
public void | setApp(boolean app)If -a option is passed to verifier this variable is set for invoking only
application related tests
this.app = app;
|
public void | setAppClient(boolean appClient)If -p option is passed to verifier this variable is set for invoking only
application client related tests
this.appClient = appClient;
|
public void | setApplication(com.sun.enterprise.deployment.Application application)
this.application = application;
|
public void | setClassPath(java.util.List classPath)
this.classPath = classPath;
|
public void | setConfigDirStr(java.lang.String configDirStr)set the config dir.
this.configDirStr = configDirStr;
|
public void | setConnector(boolean connector)If -c option is passed to verifier this variable is set for invoking only
connector related tests
this.connector = connector;
|
public void | setDomainDir(java.lang.String domainDir)
this.domainDir = domainDir;
|
public void | setEjb(boolean ejb)If -e option is passed to verifier this variable is set for invoking only
ejb related tests
this.ejb = ejb;
|
public void | setExplodedArchivePath(java.lang.String explodedArchivePath)
this.explodedArchivePath = explodedArchivePath;
|
public void | setExtDir(java.lang.String extDir)
this.extDir = extDir;
|
public void | setIsBackend(boolean b)
this.isBackend = b;
|
public void | setJarFileName(java.lang.String jarFileName)sets the jar file name to be verified
this.jarFileName = jarFileName;
|
public void | setJavaEEVersion(java.lang.String javaEEVersion)
this.javaEEVersion = javaEEVersion;
|
public void | setJspOutDir(java.io.File jspOutDir)
this.jspOutDir = jspOutDir;
|
public void | setOutputDirName(java.lang.String outputDirName)set the output directory where to keep the report files
this.outputDirName = outputDirName;
|
public void | setPartition(boolean partition)if verifier is invoked to run tests for specific component(s) this
variable is set to true
this.partition = partition;
|
public void | setPersistenceUnits(boolean persistenceUnits)If -P option is passed to verifier this variable is set for invoking only
persistence related tests
this.persistenceUnits = persistenceUnits;
|
public void | setPortabilityMode(boolean portabilityMode)
isPortabilityMode = portabilityMode;
|
public void | setReportLevel(int reportLevel)set the reporting level of verifier
this.reportLevel = reportLevel;
|
public void | setResultManager(ResultManager resultManager)
this.resultManager = resultManager;
|
public void | setUseTimeStamp(boolean useTimeStamp)set option to append timestamp to report files
this.useTimeStamp = useTimeStamp;
|
public void | setUsingGui(boolean usingGui)
this.usingGui = usingGui;
|
public void | setWeb(boolean web)If -w option is passed to verifier this variable is set for invoking only
web related tests
this.web = web;
|
public void | setWebServices(boolean webServices)If -s option is passed to verifier this variable is set for invoking only
webServices related tests
this.webServices = webServices;
|
public void | setWebServicesClient(boolean webServicesClient)If -l option is passed to verifier this variable is set for invoking only
webservices client related tests
this.webServicesClient = webServicesClient;
|