Uses of Class
org.apache.qpid.protocol.AMQConstant

Packages that use AMQConstant
org.apache.qpid   
org.apache.qpid.framing   
org.apache.qpid.protocol   
 

Uses of AMQConstant in org.apache.qpid
 

Methods in org.apache.qpid that return AMQConstant
 AMQConstant AMQException.getErrorCode()
          Gets the AMQ protocol exception code associated with this exception.
 

Constructors in org.apache.qpid with parameters of type AMQConstant
AMQChannelClosedException(AMQConstant errorCode, String msg, Throwable cause)
           
AMQChannelException(AMQConstant errorCode, String msg, int classId, int methodId, byte major, byte minor, Throwable cause)
           
AMQConnectionClosedException(AMQConstant errorCode, String msg, Throwable cause)
           
AMQConnectionException(AMQConstant errorCode, String msg, int classId, int methodId, byte major, byte minor, Throwable cause)
           
AMQConnectionFailureException(AMQConstant errorCode, String message, Throwable cause)
           
AMQException(AMQConstant errorCode, String msg)
          Deprecated. 
AMQException(AMQConstant errorCode, String msg, Throwable cause)
          Creates an exception with an optional error code, optional message and optional underlying cause.
AMQProtocolException(AMQConstant errorCode, String msg, Throwable cause)
          Constructor for a Protocol Exception
AMQUndeliveredException(AMQConstant errorCode, String msg, Object bounced, Throwable cause)
           
 

Uses of AMQConstant in org.apache.qpid.framing
 

Methods in org.apache.qpid.framing with parameters of type AMQConstant
 AMQChannelException AMQMethodBody.getChannelException(AMQConstant code, String message)
           
 AMQChannelException AMQMethodBodyImpl.getChannelException(AMQConstant code, String message)
           
 AMQChannelException AMQMethodBody.getChannelException(AMQConstant code, String message, Throwable cause)
           
 AMQChannelException AMQMethodBodyImpl.getChannelException(AMQConstant code, String message, Throwable cause)
           
 AMQConnectionException AMQMethodBody.getConnectionException(AMQConstant code, String message)
           
 AMQConnectionException AMQMethodBodyImpl.getConnectionException(AMQConstant code, String message)
           
 AMQConnectionException AMQMethodBody.getConnectionException(AMQConstant code, String message, Throwable cause)
           
 AMQConnectionException AMQMethodBodyImpl.getConnectionException(AMQConstant code, String message, Throwable cause)
           
 

Constructors in org.apache.qpid.framing with parameters of type AMQConstant
AMQFrameDecodingException(AMQConstant errorCode, String message)
           
AMQFrameDecodingException(AMQConstant errorCode, String message, Throwable cause)
           
 

Uses of AMQConstant in org.apache.qpid.protocol
 

Fields in org.apache.qpid.protocol declared as AMQConstant
static AMQConstant AMQConstant.ACCESS_REFUSED
          The client attempted to work with a server entity to which it has no access due to security settings.
static AMQConstant AMQConstant.ALREADY_EXISTS
          The client attempted to work with a server entity to which it has no access because another client is working with it.
static AMQConstant AMQConstant.CHANNEL_ERROR
          The client attempted to work with a channel that had not been correctly opened.
static AMQConstant AMQConstant.COMMAND_INVALID
          The client sent an invalid sequence of frames, attempting to perform an operation that was considered invalid by the server.
static AMQConstant AMQConstant.CONTEXT_IN_USE
          An operator intervened to close the connection for some reason.
static AMQConstant AMQConstant.FRAME_END
           
static AMQConstant AMQConstant.FRAME_ERROR
          The client sent a malformed frame that the server could not decode.
static AMQConstant AMQConstant.FRAME_MIN_SIZE
           
static AMQConstant AMQConstant.IN_USE
          The client requested a method that was not allowed because some precondition failed.
static AMQConstant AMQConstant.INTERNAL_ERROR
          The server could not complete the method because of an internal error.
static AMQConstant AMQConstant.INVALID_ARGUMENT
           
static AMQConstant AMQConstant.INVALID_PATH
          The client tried to work with an unknown virtual host or cluster.
static AMQConstant AMQConstant.INVALID_ROUTING_KEY
           
static AMQConstant AMQConstant.MESSAGE_TOO_LARGE
          The client attempted to transfer content larger than the server could accept at the present time.
static AMQConstant AMQConstant.NO_CONSUMERS
          When the exchange cannot deliver to a consumer when the immediate flag is set.
static AMQConstant AMQConstant.NO_ROUTE
          When the exchange cannot route the result of a .Publish, most likely due to an invalid routing key.
static AMQConstant AMQConstant.NOT_ALLOWED
          The client tried to work with some entity in a manner that is prohibited by the server, due to security settings or by some other criteria.
static AMQConstant AMQConstant.NOT_DELIVERED
          The client asked for a specific message that is no longer available.
static AMQConstant AMQConstant.NOT_FOUND
          The client attempted to work with a server entity that does not exist.
static AMQConstant AMQConstant.NOT_IMPLEMENTED
          The client tried to use functionality that is not implemented in the server.
static AMQConstant AMQConstant.REPLY_SUCCESS
          Indicates that the method completed successfully.
static AMQConstant AMQConstant.REQUEST_TIMEOUT
           
static AMQConstant AMQConstant.RESOURCE_ERROR
          The server could not complete the method because it lacked sufficient resources.
static AMQConstant AMQConstant.SYNTAX_ERROR
          The client sent a frame that contained illegal values for one or more fields.
static AMQConstant AMQConstant.UNSUPPORTED_BROKER_PROTOCOL_ERROR
          The server does not support the protocol version
static AMQConstant AMQConstant.UNSUPPORTED_CLIENT_PROTOCOL_ERROR
          The client imp does not support the protocol version
 

Methods in org.apache.qpid.protocol that return AMQConstant
static AMQConstant AMQConstant.getConstant(int code)
          Creates a constant for a status code by looking up the code in the map of known codes.
 



Licensed to the Apache Software Foundation