public interface ICrudByIdSupport<T>
Modifier and Type | Method and Description |
---|---|
Ack |
createById(long id,
T value) |
void |
deleteById(long id) |
ItemValue<T> |
getCompleteById(long id) |
void |
multipleDeleteById(java.util.List<java.lang.Long> ids) |
Ack |
updateById(long id,
T value) |
@GET @Path(value="{id}/completeById") ItemValue<T> getCompleteById(@PathParam(value="id") long id)
@DELETE @Path(value="id/{id}") void deleteById(@PathParam(value="id") long id)
@DELETE @Path(value="_multipleDelete") void multipleDeleteById(java.util.List<java.lang.Long> ids) throws ServerFault
ServerFault
Copyright © 2021. All Rights Reserved.