Interface DoRResult


  • public interface DoRResult
    This class defines the output of the DoRService
    Since:
    6.3
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      byte[] getContent()
      This method will return the content of the resultant object.
      java.lang.String getContentType()
      This method will return the content Type of the output generated.
      java.lang.Object getValue​(java.lang.String key)
      Generic method to return the value for a given key.
      java.lang.Boolean isNonInteractive()
      This method will return whether the output is non-interactive
    • Method Detail

      • getContent

        byte[] getContent()
        This method will return the content of the resultant object.
        Returns:
        the byte array output generated.
      • getContentType

        java.lang.String getContentType()
        This method will return the content Type of the output generated.
        Returns:
        the output type.
      • isNonInteractive

        java.lang.Boolean isNonInteractive()
        This method will return whether the output is non-interactive
        Returns:
        interactivity of contained output
      • getValue

        java.lang.Object getValue​(java.lang.String key)
        Generic method to return the value for a given key.
        Parameters:
        key - The key for which the value has to be searched and returned.
        Returns:
        The value which would require to be type casted into the expected format.