Package com.zerog.ia.auto.project
Class JVMSearchPath
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.JVMSearchPath
-
- All Implemented Interfaces:
Referenceable
public final class JVMSearchPath extends ProjectObject
Defines the parameters for the VM search performed by the installer when searching for a valid VM for the installed application.
-
-
Constructor Summary
Constructors Constructor Description JVMSearchPath()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLocation()
The location in the target system where to search for valid VMs.JVMSearchType
getSearchType()
The type of search to perform when searching for a valid VM in the target location.void
setLocation(java.lang.String location)
The location in the target system where to search for valid VMs.void
setSearchType(JVMSearchType searchType)
The type of search to perform when searching for a valid VM in the target location.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getLocation
public java.lang.String getLocation()
The location in the target system where to search for valid VMs.
-
setLocation
public void setLocation(java.lang.String location)
The location in the target system where to search for valid VMs.
-
getSearchType
public JVMSearchType getSearchType()
The type of search to perform when searching for a valid VM in the target location. The search type determines whether the search should include the sub-diretories or not.The valid search types are TOP_LEVEL_DIR, FIRST_LEVEL_DIR and ALL_LEVELS_DIRS. Default to TOP_LEVEL_DIR.
-
setSearchType
public void setSearchType(JVMSearchType searchType)
The type of search to perform when searching for a valid VM in the target location. The search type determines whether the search should include the sub-diretories or not.The valid search types are TOP_LEVEL_DIR, FIRST_LEVEL_DIR and ALL_LEVELS_DIRS. Default to TOP_LEVEL_DIR.
-
-