com.dell.cpsd.common.rabbitmq.message.HasErrors Maven / Gradle / Ivy
The newest version!
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved. Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.common.rabbitmq.message;
import java.util.List;
/**
* Indicates that message has array of errors. Used mostly for error responses.
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved. Dell EMC Confidential/Proprietary Information
*
*/
/**
* The class is deprecated as it will be moved to amqp-contract-extension repo, The implementation will be provided in the next release of
* common-messaging-parent and amqp-contract-extension
*/
@Deprecated
public interface HasErrors
{
List getErrors();
void setErrors(List errorMessages);
}