de.tum.ei.lkn.eces.routing.DeleteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of routing Show documentation
Show all versions of routing Show documentation
Routing library based on the ECES framework
The newest version!
package de.tum.ei.lkn.eces.routing;
import de.tum.ei.lkn.eces.core.Component;
import de.tum.ei.lkn.eces.core.annotations.ComponentBelongsTo;
/**
* Component telling the Routing System to delete a Request.
*
* @author Amaury Van Bemten
*/
@ComponentBelongsTo(system = RoutingSystem.class)
public class DeleteRequest extends Component {
private Long entityToDelete;
public DeleteRequest(Long entityId) {
this.entityToDelete = entityId;
}
public Long getEntityToDelete() {
return this.entityToDelete;
}
}