Package com.rabbitmq.client
Interface BasicProperties
-
- All Known Implementing Classes:
AMQBasicProperties
,AMQP.BasicProperties
public interface BasicProperties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAppId()
Retrieve the value in the appId field.java.lang.String
getContentEncoding()
Retrieve the value in the contentEncoding field.java.lang.String
getContentType()
Retrieve the value in the contentType field.java.lang.String
getCorrelationId()
Retrieve the value in the correlationId field.java.lang.Integer
getDeliveryMode()
Retrieve the value in the deliveryMode field.java.lang.String
getExpiration()
Retrieve the value in the expiration field.java.util.Map<java.lang.String,java.lang.Object>
getHeaders()
Retrieve the table in the headers field as a map of fields names and values.java.lang.String
getMessageId()
Retrieve the value in the messageId field.java.lang.Integer
getPriority()
Retrieve the value in the priority field.java.lang.String
getReplyTo()
Retrieve the value in the replyTo field.java.util.Date
getTimestamp()
Retrieve the value in the timestamp field.java.lang.String
getType()
Retrieve the value in the type field.java.lang.String
getUserId()
Retrieve the value in the userId field.
-
-
-
Method Detail
-
getContentType
java.lang.String getContentType()
Retrieve the value in the contentType field.- Returns:
- contentType field, or null if the field has not been set.
-
getContentEncoding
java.lang.String getContentEncoding()
Retrieve the value in the contentEncoding field.- Returns:
- contentEncoding field, or null if the field has not been set.
-
getHeaders
java.util.Map<java.lang.String,java.lang.Object> 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
java.lang.Integer getDeliveryMode()
Retrieve the value in the deliveryMode field.- Returns:
- deliveryMode field, or null if the field has not been set.
-
getPriority
java.lang.Integer getPriority()
Retrieve the value in the priority field.- Returns:
- priority field, or null if the field has not been set.
-
getCorrelationId
java.lang.String getCorrelationId()
Retrieve the value in the correlationId field.- Returns:
- correlationId field, or null if the field has not been set.
-
getReplyTo
java.lang.String getReplyTo()
Retrieve the value in the replyTo field.- Returns:
- replyTo field, or null if the field has not been set.
-
getExpiration
java.lang.String getExpiration()
Retrieve the value in the expiration field.- Returns:
- expiration field, or null if the field has not been set.
-
getMessageId
java.lang.String getMessageId()
Retrieve the value in the messageId field.- Returns:
- messageId field, or null if the field has not been set.
-
getTimestamp
java.util.Date getTimestamp()
Retrieve the value in the timestamp field.- Returns:
- timestamp field, or null if the field has not been set.
-
getType
java.lang.String getType()
Retrieve the value in the type field.- Returns:
- type field, or null if the field has not been set.
-
getUserId
java.lang.String getUserId()
Retrieve the value in the userId field.- Returns:
- userId field, or null if the field has not been set.
-
getAppId
java.lang.String getAppId()
Retrieve the value in the appId field.- Returns:
- appId field, or null if the field has not been set.
-
-