com.dell.cpsd.common.rabbitmq.registration.notifier.model.MessageQueueDto Maven / Gradle / Ivy
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.common.rabbitmq.registration.notifier.model;
/**
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*
*
* @since SINCE-TBD
*/
public class MessageQueueDto
{
private String name;
public MessageQueueDto(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
}