@Override
 @POST
 @Consumes({"application/xml", "application/json"})
 public Department create(Department entity) {
   super.create(entity);
   return entity;
 }
 @DELETE
 @Path("{id}")
 public void remove(@PathParam("id") Short id) {
   super.remove(super.find(id));
 }