public interface SpawnedContainer
| Modifier and Type | Method and Description |
|---|---|
void |
addExtraClasspath(String location) |
void |
addSharedClasspath(String location) |
String[] |
getExtraClasspath() |
JvmLauncherFactory |
getJvmLauncherFactory()
Gets the factory used to spawn the container JVM.
|
String[] |
getSharedClasspath() |
Map<String,String> |
getSystemProperties() |
void |
setExtraClasspath(String[] classpath) |
void |
setJvmLauncherFactory(JvmLauncherFactory jvmLauncherFactory)
Sets the factory used to spawn the container JVM.
|
void |
setSharedClasspath(String[] classpath) |
void |
setSystemProperties(Map<String,String> properties) |
void setExtraClasspath(String[] classpath)
classpath - the extra classpath that is added to the container's classpath when it is
started.void addExtraClasspath(String location)
location - the extra classpath that is added to the container's classpath when it is
started.String[] getExtraClasspath()
void setSharedClasspath(String[] classpath)
classpath - the shared classpath that is shared by the container applications.void addSharedClasspath(String location)
location - the shared classpath that is added to the container's classpath when it is
started.String[] getSharedClasspath()
void setSystemProperties(Map<String,String> properties)
properties - the System properties to set in the container executing VM.Map<String,String> getSystemProperties()
void setJvmLauncherFactory(JvmLauncherFactory jvmLauncherFactory)
jvmLauncherFactory - The factory used to spawn the container JVM, must not be
null.JvmLauncherFactory getJvmLauncherFactory()
null.Copyright © 2004-2013 Codehaus. All Rights Reserved.