Creates an application connection templates with the specified settings.
void createApplicationConnectionTemplate(ApplicationConnectionTemplateVO applicationConnectionTemplate, Map settings) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
AppConnectionSettingVO acsvo = new AppConnectionSettingVO();
Map<APPCONNECTION_SETTING_FIELD, Object> setting = new HashMap<APPCONNECTION_SETTING_FIELD, Object>();
setting.put(APPCONNECTION_SETTING_FIELD.SECURITY_CONF, "admin");
acsvo.setSetting(setting);
app.createApplicationConnectionTemplate("MyTemplate",
"Short description", acsvo);