de.gold.scim.common.response.DeleteResponse Maven / Gradle / Ivy
The newest version!
package de.gold.scim.common.response;
import de.gold.scim.common.constants.HttpStatus;
/**
* author Pascal Knueppel
* created at: 14.10.2019 - 20:09
*
* represents an update response object
*/
public class DeleteResponse extends ScimResponse
{
public DeleteResponse()
{
super(null);
}
/**
* {@inheritDoc}
*/
@Override
public int getHttpStatus()
{
return HttpStatus.NO_CONTENT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy