Updates application connection template settings.
void updateApplicationConnectionTemplateSettings(templateName, Map settings) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
AppConnectionSettingVO settings = new AppConnectionSettingVO();
Map<APPCONNECTION_SETTING_FIELD, Object> setting = new HashMap<APPCONNECTION_SETTING_FIELD, Object>();
setting.put(APPCONNECTION_SETTING_FIELD.SECURITY_CONF, "admin");
setting.put(APPCONNECTION_SETTING_FIELD.ACTIVATION_CODE_LENGTH, "9");
setting.put(APPCONNECTION_SETTING_FIELD.ALLOW_ROAMING, "true");
settings.setSetting(setting);
app.updateApplicationConnectionTemplateSettings("template 1", settings);