Package com.rabbitmq.client
Interface BasicProperties
- All Known Implementing Classes:
AMQBasicProperties
,AMQP.BasicProperties
public interface BasicProperties
-
Method Summary
Modifier and TypeMethodDescriptiongetAppId()
Retrieve the value in the appId field.Retrieve the value in the contentEncoding field.Retrieve the value in the contentType field.Retrieve the value in the correlationId field.Retrieve the value in the deliveryMode field.Retrieve the value in the expiration field.Retrieve the table in the headers field as a map of fields names and values.Retrieve the value in the messageId field.Retrieve the value in the priority field.Retrieve the value in the replyTo field.Retrieve the value in the timestamp field.getType()
Retrieve the value in the type field.Retrieve the value in the userId field.
-
Method Details
-
getContentType
String getContentType()Retrieve the value in the contentType field.- Returns:
- contentType field, or null if the field has not been set.
-
getContentEncoding
String getContentEncoding()Retrieve the value in the contentEncoding field.- Returns:
- contentEncoding field, or null if the field has not been set.
-
getHeaders
Retrieve the table in the headers field as a map of fields names and values.- Returns:
- headers table, or null if the headers field has not been set.
-
getDeliveryMode
Integer getDeliveryMode()Retrieve the value in the deliveryMode field.- Returns:
- deliveryMode field, or null if the field has not been set.
-
getPriority
Integer getPriority()Retrieve the value in the priority field.- Returns:
- priority field, or null if the field has not been set.
-
getCorrelationId
String getCorrelationId()Retrieve the value in the correlationId field.- Returns:
- correlationId field, or null if the field has not been set.
-
getReplyTo
String getReplyTo()Retrieve the value in the replyTo field.- Returns:
- replyTo field, or null if the field has not been set.
-
getExpiration
String getExpiration()Retrieve the value in the expiration field.- Returns:
- expiration field, or null if the field has not been set.
-
getMessageId
String getMessageId()Retrieve the value in the messageId field.- Returns:
- messageId field, or null if the field has not been set.
-
getTimestamp
Date getTimestamp()Retrieve the value in the timestamp field.- Returns:
- timestamp field, or null if the field has not been set.
-
getType
String getType()Retrieve the value in the type field.- Returns:
- type field, or null if the field has not been set.
-
getUserId
String getUserId()Retrieve the value in the userId field.- Returns:
- userId field, or null if the field has not been set.
-
getAppId
String getAppId()Retrieve the value in the appId field.- Returns:
- appId field, or null if the field has not been set.
-