Class AdminExecutableResult


  • public class AdminExecutableResult
    extends Object
    The result of a used executable application.
    • Constructor Detail

      • AdminExecutableResult

        public AdminExecutableResult()
    • Method Detail

      • getApplicationName

        @Nullable
        public @Nullable String getApplicationName()
        The name of the executed application.
        Returns:
        applicationName
      • setApplicationName

        public void setApplicationName​(String applicationName)
      • getCommandLine

        @Nullable
        public @Nullable List<String> getCommandLine()
        The commandline output created by the executed application.
        Returns:
        commandLine
      • setCommandLine

        public void setCommandLine​(List<String> commandLine)
      • getConsoleOutput

        @Nullable
        public @Nullable List<String> getConsoleOutput()
        The console output created by the executed application.
        Returns:
        consoleOutput
      • setConsoleOutput

        public void setConsoleOutput​(List<String> consoleOutput)
      • getExitCode

        @Nullable
        public @Nullable Integer getExitCode()
        The application specific exit code. This is not a webPDF error code and is defined by the called application itself.
        Returns:
        exitCode
      • setExitCode

        public void setExitCode​(Integer exitCode)
      • getIsSuccessful

        @Nullable
        public @Nullable Boolean getIsSuccessful()
        When set to true, the execution has been successful.
        Returns:
        isSuccessful
      • setIsSuccessful

        public void setIsSuccessful​(Boolean isSuccessful)
      • getMessage

        @Nullable
        public @Nullable String getMessage()
        A message summarizing the execution result.
        Returns:
        message
      • setMessage

        public void setMessage​(String message)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object