com.dell.cpsd.common.rabbitmq.message.HasReplyTo Maven / Gradle / Ivy
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.common.rabbitmq.message;
/**
* Marker interface for messages having 'replyTo' property.
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*
*/
public interface HasReplyTo
{
String getReplyTo();
void setReplyTo(String replyTo);
}