mirror of
https://github.com/ArenMg/aren.git
synced 2024-11-19 23:20:53 +00:00
13 lines
286 B
Java
13 lines
286 B
Java
package fr.lirmm.aren.model.aaf;
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
/**
|
|
* Specialization of AbstractRequest for Deletion.
|
|
*
|
|
* @author Florent Descroix {@literal <florentdescroix@posteo.net>}
|
|
*/
|
|
@XmlRootElement
|
|
public class DeleteRequest extends AbstractRequest {
|
|
|
|
}
|