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

com.dottydingo.hyperion.api.DeleteResponse Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.api;

/**
 * The response from a delete operation
 */
public class DeleteResponse
{
    private int count;

    /**
     * Return the number of items deleted
     * @return The number of items
     */
    public int getCount()
    {
        return count;
    }

    /**
     * Set the number of items deleted
     * @param count The number of items
     */
    public void setCount(int count)
    {
        this.count = count;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy