Package org.jclouds.scriptbuilder.domain
Class InitMetadata
java.lang.Object
org.jclouds.scriptbuilder.domain.InitMetadata
- Direct Known Subclasses:
JavaInitMetadata
Defines the environment of a process that can be started in the background on an operating
system.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionholds configuration files of the process.holds files that are generated at runtime, but are not temporary.the named ip and port that this process will bind server sockets to, as well the protocol used to test it.on-disk, read-only location of the artifacts needed to recreate this process.where all logs are written.getName()
what uniquely identifies your process in a listing.Where the platform that this process is an instance of is located.working directory when starting the server.working directory when stopping the server.
-
Constructor Details
-
InitMetadata
-
-
Method Details
-
getStartDir
working directory when starting the server. -
getStopDir
working directory when stopping the server. -
getPlatformHome
Where the platform that this process is an instance of is located. This is analogous to the CATALINA_HOME on the tomcat platform. -
getName
what uniquely identifies your process in a listing. Note that this will become a part of the process args. -
getConfigDir
holds configuration files of the process. These are generated or copied from data in thegold copy directory
. -
getDataDir
holds files that are generated at runtime, but are not temporary. Ex. customer data, state, etc. These files survive recreation of the instance. -
getLogDir
where all logs are written. The following files are created here:- stdout.log - where stdout is piped to upon start.
- stderr.log - where stderr is piped to upon start.
- pid.log - holds the process id, if the process is running.
-
getGoldDir
on-disk, read-only location of the artifacts needed to recreate this process. -
getEndPoint
the named ip and port that this process will bind server sockets to, as well the protocol used to test it.
-