Class StatusCodes.Success

    • Constructor Summary

      Constructors 
      Constructor Description
      Success​(int intValue, java.lang.String reason, java.lang.String defaultMessage, boolean allowsEntity)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean allowsEntity()
      Returns if a response with this status-code is allowed to be accompanied with a non-empty entity.
      java.lang.String defaultMessage()
      Returns the default message to be included as the content of an Http response with this status-code.
      int intValue()
      Returns the numeric code of this status code.
      boolean isRedirection()
      Returns if the status-code is a redirection status code.
      java.lang.String reason()
      Returns the reason message for this status code.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface scala.Equals

        canEqual, equals
      • Methods inherited from interface scala.Product

        productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
    • Constructor Detail

      • Success

        public Success​(int intValue,
                       java.lang.String reason,
                       java.lang.String defaultMessage,
                       boolean allowsEntity)
    • Method Detail

      • intValue

        public int intValue()
        Description copied from class: StatusCode
        Returns the numeric code of this status code.
        Specified by:
        intValue in class StatusCode
      • reason

        public java.lang.String reason()
        Description copied from class: StatusCode
        Returns the reason message for this status code.
        Specified by:
        reason in class StatusCode
      • defaultMessage

        public java.lang.String defaultMessage()
        Description copied from class: StatusCode
        Returns the default message to be included as the content of an Http response with this status-code.
        Specified by:
        defaultMessage in class StatusCode
      • allowsEntity

        public boolean allowsEntity()
        Description copied from class: StatusCode
        Returns if a response with this status-code is allowed to be accompanied with a non-empty entity.
        Specified by:
        allowsEntity in class StatusCode
      • isRedirection

        public boolean isRedirection()
        Description copied from class: StatusCode
        Returns if the status-code is a redirection status code.
        Specified by:
        isRedirection in class StatusCode