private void handleDeleteOffer() {
   String webKey = decodeStringArgument();
   Integer id = AcUspsInternationalSkeletonRouteOfferTools.getIdFromWebKey(webKey);
   if (id == null) error("Invalid offer id.");
   getUspsInternationalSkeletonRouteOfferService().delete(id);
   print();
 }
 private void handleEditOffer() {
   String webKey = decodeStringArgument();
   Integer id = AcUspsInternationalSkeletonRouteOfferTools.getIdFromWebKey(webKey);
   if (id == null) error("Invalid offer id.");
   getPageSession().setUspsInternationalSkeletonRouteOfferWebKey(webKey);
   AcUspsInternationalSkeletonRouteOfferEditPage.instance.print();
 }