/**
  * Wrapper for the static method {@link ApplicationManager#updateApplication(Application,
  * Application, Subject, String)}.
  *
  * @param oldApplication The (existing) application, to update
  * @param newApplication The new version of the existing application. The name of the new and old
  *     much match.
  * @param subject The subject authorizing the update - will be validated for permission.
  * @param realm The realm in which to update the {@link Application}
  * @throws EntitlementException if there was a problem deleting the old resource
  */
 public void updateApplication(
     Application oldApplication, Application newApplication, Subject subject, String realm)
     throws EntitlementException {
   ApplicationManager.updateApplication(oldApplication, newApplication, subject, realm);
 }