Removes existing applications from the package.
void removeApplications (Collection<String> appIds) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
Collection<String> apps = new ArrayList<String>();
apps.add("app1");
suppkg.removeApplications(apps);