org.apache.qpid.framing
Interface CommonContentHeaderProperties

All Superinterfaces:
ContentHeaderProperties
All Known Implementing Classes:
BasicContentHeaderProperties

public interface CommonContentHeaderProperties
extends ContentHeaderProperties


Method Summary
 AMQShortString getAppId()
           
 AMQShortString getClusterId()
           
 AMQShortString getContentType()
           
 AMQShortString getCorrelationId()
           
 byte getDeliveryMode()
           
 AMQShortString getEncoding()
           
 long getExpiration()
           
 FieldTable getHeaders()
           
 AMQShortString getMessageId()
           
 byte getPriority()
           
 AMQShortString getReplyTo()
           
 long getTimestamp()
           
 AMQShortString getType()
           
 AMQShortString getUserId()
           
 void setAppId(AMQShortString appId)
           
 void setClusterId(AMQShortString clusterId)
           
 void setContentType(AMQShortString contentType)
           
 void setCorrelationId(AMQShortString correlationId)
           
 void setDeliveryMode(byte deliveryMode)
           
 void setEncoding(AMQShortString encoding)
           
 void setExpiration(long expiration)
           
 void setHeaders(FieldTable headers)
           
 void setMessageId(AMQShortString messageId)
           
 void setPriority(byte priority)
           
 void setReplyTo(AMQShortString replyTo)
           
 void setTimestamp(long timestamp)
           
 void setType(AMQShortString type)
           
 void setUserId(AMQShortString userId)
           
 
Methods inherited from interface org.apache.qpid.framing.ContentHeaderProperties
getPropertyFlags, getPropertyListSize, populatePropertiesFromBuffer, updated, writePropertyListPayload
 

Method Detail

getContentType

AMQShortString getContentType()

setContentType

void setContentType(AMQShortString contentType)

getHeaders

FieldTable getHeaders()

setHeaders

void setHeaders(FieldTable headers)

getDeliveryMode

byte getDeliveryMode()

setDeliveryMode

void setDeliveryMode(byte deliveryMode)

getPriority

byte getPriority()

setPriority

void setPriority(byte priority)

getCorrelationId

AMQShortString getCorrelationId()

setCorrelationId

void setCorrelationId(AMQShortString correlationId)

getReplyTo

AMQShortString getReplyTo()

setReplyTo

void setReplyTo(AMQShortString replyTo)

getExpiration

long getExpiration()

setExpiration

void setExpiration(long expiration)

getMessageId

AMQShortString getMessageId()

setMessageId

void setMessageId(AMQShortString messageId)

getTimestamp

long getTimestamp()

setTimestamp

void setTimestamp(long timestamp)

getType

AMQShortString getType()

setType

void setType(AMQShortString type)

getUserId

AMQShortString getUserId()

setUserId

void setUserId(AMQShortString userId)

getAppId

AMQShortString getAppId()

setAppId

void setAppId(AMQShortString appId)

getClusterId

AMQShortString getClusterId()

setClusterId

void setClusterId(AMQShortString clusterId)

getEncoding

AMQShortString getEncoding()

setEncoding

void setEncoding(AMQShortString encoding)


Licensed to the Apache Software Foundation