com.dell.cpsd.common.rabbitmq.message.HasErrors 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;
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
*
*/
public interface HasErrors
{
List getErrors();
void setErrors(List errorMessages);
}