All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dell.cpsd.common.rabbitmq.message.HasTimestamp 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.Date;

/**
 * Marker interface for messages having 'timestamp' property.
 * 

* 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 HasTimestamp { Date getTimestamp(); void setTimestamp(Date timestamp); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy