mirror of
https://github.com/ArenMg/aren.git
synced 2024-11-19 23:20:53 +00:00
14 lines
286 B
Java
14 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 {
|
||
|
|
||
|
}
|