Class PunchOutResponseCode


  • public class PunchOutResponseCode
    extends java.lang.Object
    PunchOut protocol response codes.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String CONFLICT
      The current state of the server or its internal data prevented the (update) operation request.
      static java.lang.String ERROR_CODE_AUTH_FAILED
      Authentication failed.
      static java.lang.String FORBIDDEN
      Access to resource was forbidden.
      static java.lang.String INTERNAL_SERVER_ERROR
      Generic error.
      static java.lang.String SUCCESS
      Successful response.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • SUCCESS

        public static final java.lang.String SUCCESS
        Successful response.
        See Also:
        Constant Field Values
      • ERROR_CODE_AUTH_FAILED

        public static final java.lang.String ERROR_CODE_AUTH_FAILED
        Authentication failed.
        See Also:
        Constant Field Values
      • FORBIDDEN

        public static final java.lang.String FORBIDDEN
        Access to resource was forbidden.
        See Also:
        Constant Field Values
      • CONFLICT

        public static final java.lang.String CONFLICT
        The current state of the server or its internal data prevented the (update) operation request. An identical Request is unlikely to succeed in the future, but only after another operation has executed, if at all.
        See Also:
        Constant Field Values
      • INTERNAL_SERVER_ERROR

        public static final java.lang.String INTERNAL_SERVER_ERROR
        Generic error. When other error codes does not apply.
        See Also:
        Constant Field Values