Class MsrpResponse


  • public class MsrpResponse
    extends MsrpMessage
    MSRP response.
    • Constructor Detail

      • MsrpResponse

        public MsrpResponse​(String transactionId,
                            int code,
                            String comment)
        Construct an instance with the given transaction ID, code, and comment.
        Parameters:
        transactionId - transaction ID, or null to have a randomly generated one assigned
        code - response code
        comment - response code comment, if any, otherwise null
        Throws:
        IllegalArgumentException - if code is not in the range 000 .. 999
        IllegalArgumentException - if transactionId is invalid
      • MsrpResponse

        public MsrpResponse​(String transactionId,
                            int code,
                            String comment,
                            MsrpHeaders headers)
        Construct an instance with the given transaction ID, code, comment, and headers.
        Parameters:
        transactionId - transaction ID, or null to have a randomly generated one assigned
        code - response code
        comment - response code comment, if any, otherwise null
        headers - MSRP headers, or null to have an empty instance created
        Throws:
        IllegalArgumentException - if code is not in the range 000 .. 999
        IllegalArgumentException - if transactionId is invalid
    • Method Detail

      • getCode

        public int getCode()
      • getComment

        public String getComment()
      • getResultString

        public String getResultString()
        Get the result string (starting with the response code) from the first line of this response.
        Returns:
        result string
      • toStatus

        public Status toStatus()
        Get this response's response code and comment as a Status object.
        Returns:
        associated Status
      • getFlagByte

        public byte getFlagByte()
        Description copied from class: MsrpMessage
        Get the end line flag byte.
        Specified by:
        getFlagByte in class MsrpMessage
        Returns:
        flag byte
      • writePayload

        protected void writePayload​(OutputStream output)
                             throws IOException
        Description copied from class: MsrpMessage
        Write the message body, if any.

        If this message has a body, this method should output CRLF, followed by the binary body content, followed by a final CRLF. If this message has no body, this method should not output anything.

        Specified by:
        writePayload in class MsrpMessage
        Parameters:
        output - destination for message
        Throws:
        IOException - if an I/O error occurs