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

com.fasterxml.clustermate.service.msg.DeleteResponse Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package com.fasterxml.clustermate.service.msg;

import com.fasterxml.clustermate.api.EntryKey;

/**
 * POJO returned as a result of successful DELETE request
 * (which ideally should be any and all DELETE requests)
 */
public class DeleteResponse extends CRUDResponseBase
{
    public final static String PATH_FOR_INLINED = "NA";

    public long creationTime;
	
    public DeleteResponse(K key, long creationTime)
    {
        super(key, "OK");
        this.creationTime = creationTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy