Deletes a list of application connection templates.
void deleteApplicationConnectionTemplates(List<String> templateNames) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
Collection<String> names = new ArrayList<String>();
names.add("MyTemplate");
app.deleteApplicationConnectionTemplates(names);