Package com.sodius.mdw.server.launch
Interface LaunchResult
-
public interface LaunchResult
Describes the result of a launch execution.This interface is not intended to be implemented by clients.
- See Also:
Launch.getResult()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<GeneratedFile>
getGeneratedFiles()
Returns the list of files generated during the launch.Storage
getStorage()
Returns the storage which contains the launch result data.
-
-
-
Method Detail
-
getStorage
Storage getStorage()
Returns the storage which contains the launch result data. The underlying storage is a zip file which contains an entry per generated file. The zip entry name is the symbolic path of the generated file.- Returns:
- the storage which contains the launch result data.
- See Also:
getGeneratedFiles()
,GeneratedFile.getPath()
-
getGeneratedFiles
Collection<GeneratedFile> getGeneratedFiles()
Returns the list of files generated during the launch.- Returns:
- the list of files generated during the launch.
-
-