├── .gitignore ├── LICENSE.md ├── README.md ├── config.yml ├── config.yml.orig ├── gulpfile.js ├── package.json ├── readme-images ├── devportal │ ├── Fig01.jpg │ ├── Fig02.jpg │ ├── Fig03.jpg │ ├── Fig04.jpg │ ├── Fig05.jpg │ ├── Fig07.jpg │ ├── Fig09.jpg │ ├── Fig10.jpg │ ├── Fig11.jpg │ ├── Fig12.jpg │ ├── Fig13.jpg │ ├── Fig14.jpg │ ├── Fig15.jpg │ ├── Fig16.jpg │ ├── Fig17.jpg │ ├── Fig18.jpg │ ├── Fig19.jpg │ └── Fig20.jpg └── postman │ └── Fig01.jpg ├── src ├── developerportal │ ├── LICENSE.md │ ├── README.MD │ ├── all │ │ ├── libraries │ │ │ ├── README.txt │ │ │ └── flexslider │ │ │ │ ├── flexslider.css │ │ │ │ ├── fonts │ │ │ │ ├── flexslider-icon.eot │ │ │ │ ├── flexslider-icon.svg │ │ │ │ ├── flexslider-icon.ttf │ │ │ │ └── flexslider-icon.woff │ │ │ │ ├── jquery.flexslider-min.js │ │ │ │ └── jquery.flexslider.js │ │ ├── modules │ │ │ ├── README.txt │ │ │ ├── contrib │ │ │ │ ├── contact_forms │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── contact_forms.info │ │ │ │ │ ├── contact_forms.install │ │ │ │ │ ├── contact_forms.module │ │ │ │ │ ├── contact_forms.pot │ │ │ │ │ └── contact_forms_int │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── contact_forms_int.info │ │ │ │ │ │ ├── contact_forms_int.install │ │ │ │ │ │ ├── contact_forms_int.module │ │ │ │ │ │ └── contact_forms_int.pot │ │ │ │ ├── flexslider │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── flexslider_img.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── flexslider-sample-1.JPG │ │ │ │ │ │ │ ├── flexslider-sample-2.JPG │ │ │ │ │ │ │ ├── flexslider-sample-3.JPG │ │ │ │ │ │ │ └── flexslider-sample-4.JPG │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── flexslider.load.js │ │ │ │ │ ├── flexslider-logo.png │ │ │ │ │ ├── flexslider.admin.inc │ │ │ │ │ ├── flexslider.api.php │ │ │ │ │ ├── flexslider.flexslider_default_preset.inc │ │ │ │ │ ├── flexslider.info │ │ │ │ │ ├── flexslider.install │ │ │ │ │ ├── flexslider.make.example │ │ │ │ │ ├── flexslider.module │ │ │ │ │ ├── flexslider.test │ │ │ │ │ ├── flexslider_example │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── flexslider_example.context.inc │ │ │ │ │ │ ├── flexslider_example.features.field.inc │ │ │ │ │ │ ├── flexslider_example.features.inc │ │ │ │ │ │ ├── flexslider_example.features.menu_custom.inc │ │ │ │ │ │ ├── flexslider_example.flexslider_default_preset.inc │ │ │ │ │ │ ├── flexslider_example.info │ │ │ │ │ │ ├── flexslider_example.install │ │ │ │ │ │ ├── flexslider_example.module │ │ │ │ │ │ ├── flexslider_example.strongarm.inc │ │ │ │ │ │ └── flexslider_example.views_default.inc │ │ │ │ │ ├── flexslider_fields │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── flexslider_fields.info │ │ │ │ │ │ └── flexslider_fields.module │ │ │ │ │ ├── flexslider_views │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── flexslider_views.info │ │ │ │ │ │ ├── flexslider_views.module │ │ │ │ │ │ ├── flexslider_views.views.inc │ │ │ │ │ │ ├── flexslider_views_plugin_style_flexslider.inc │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ ├── flexslider-views.tpl.php │ │ │ │ │ │ │ └── flexslider_views.theme.inc │ │ │ │ │ ├── plugins │ │ │ │ │ │ └── export_ui │ │ │ │ │ │ │ └── flexslider_ctools_export_ui.inc │ │ │ │ │ └── theme │ │ │ │ │ │ ├── flexslider.theme.inc │ │ │ │ │ │ └── flexslider.tpl.php │ │ │ │ ├── flexslider_views_slideshow │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── flexslider_views_slideshow.info │ │ │ │ │ ├── flexslider_views_slideshow.module │ │ │ │ │ ├── flexslider_views_slideshow.views_slideshow.inc │ │ │ │ │ ├── js │ │ │ │ │ │ └── flexslider_views_slideshow.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── flexslider-views-slideshow-main-frame-row-item.tpl.php │ │ │ │ │ │ ├── flexslider-views-slideshow-main-frame-row.tpl.php │ │ │ │ │ │ ├── flexslider-views-slideshow-main-frame.tpl.php │ │ │ │ │ │ ├── flexslider-views-slideshow.tpl.php │ │ │ │ │ │ └── flexslider_views_slideshow.theme.inc │ │ │ │ └── quicktabs │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── add-tab.gif │ │ │ │ │ ├── css │ │ │ │ │ ├── quicktabs-admin.css │ │ │ │ │ └── quicktabs.css │ │ │ │ │ ├── delete-tab.gif │ │ │ │ │ ├── includes │ │ │ │ │ └── quicktabs_style_plugin.inc │ │ │ │ │ ├── js │ │ │ │ │ ├── qt_accordion.js │ │ │ │ │ ├── qt_ui_tabs.js │ │ │ │ │ ├── quicktabs.js │ │ │ │ │ ├── quicktabs_bbq.js │ │ │ │ │ └── quicktabs_form.js │ │ │ │ │ ├── plugins │ │ │ │ │ ├── QuickAccordion.inc │ │ │ │ │ ├── QuickBlockContent.inc │ │ │ │ │ ├── QuickCallbackContent.inc │ │ │ │ │ ├── QuickNodeContent.inc │ │ │ │ │ ├── QuickQtabsContent.inc │ │ │ │ │ ├── QuickQuicktabs.inc │ │ │ │ │ ├── QuickUiTabs.inc │ │ │ │ │ └── QuickViewContent.inc │ │ │ │ │ ├── quicktabs.admin.inc │ │ │ │ │ ├── quicktabs.api.php │ │ │ │ │ ├── quicktabs.classes.inc │ │ │ │ │ ├── quicktabs.info │ │ │ │ │ ├── quicktabs.install │ │ │ │ │ ├── quicktabs.module │ │ │ │ │ ├── quicktabs.views.inc │ │ │ │ │ ├── quicktabs_tabstyles │ │ │ │ │ ├── css │ │ │ │ │ │ └── quicktabs-tabstyles-admin.css │ │ │ │ │ ├── quicktabs_tabstyles.info │ │ │ │ │ ├── quicktabs_tabstyles.module │ │ │ │ │ └── tabstyles │ │ │ │ │ │ ├── arrows │ │ │ │ │ │ ├── arrows-rtl.css │ │ │ │ │ │ ├── arrows.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── arrows.gif │ │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── basic-rtl.css │ │ │ │ │ │ └── basic.css │ │ │ │ │ │ ├── bullets │ │ │ │ │ │ ├── bullets-rtl.css │ │ │ │ │ │ ├── bullets.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── bullets.gif │ │ │ │ │ │ │ └── bullets.png │ │ │ │ │ │ ├── excel │ │ │ │ │ │ ├── excel-rtl.css │ │ │ │ │ │ ├── excel.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── tab-bar.png │ │ │ │ │ │ │ ├── tab-left-rtl.png │ │ │ │ │ │ │ ├── tab-left-sep-rtl.png │ │ │ │ │ │ │ ├── tab-left-sep.png │ │ │ │ │ │ │ ├── tab-left.png │ │ │ │ │ │ │ ├── tab-right-rtl.png │ │ │ │ │ │ │ ├── tab-right-sep-rtl.png │ │ │ │ │ │ │ ├── tab-right-sep.png │ │ │ │ │ │ │ └── tab-right.png │ │ │ │ │ │ ├── garland │ │ │ │ │ │ ├── garland-rtl.css │ │ │ │ │ │ ├── garland.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ ├── tab-left-sidebar.gif │ │ │ │ │ │ │ ├── tab-left.gif │ │ │ │ │ │ │ ├── tab-right-sidebar.gif │ │ │ │ │ │ │ └── tab-right.gif │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── mac.gif │ │ │ │ │ │ │ └── mac.png │ │ │ │ │ │ ├── mac-rtl.css │ │ │ │ │ │ └── mac.css │ │ │ │ │ │ ├── navlist │ │ │ │ │ │ └── navlist.css │ │ │ │ │ │ ├── phylactere │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── phy.gif │ │ │ │ │ │ │ ├── phy.png │ │ │ │ │ │ │ ├── shade.gif │ │ │ │ │ │ │ └── shade.png │ │ │ │ │ │ ├── phylactere-rtl.css │ │ │ │ │ │ └── phylactere.css │ │ │ │ │ │ ├── sky │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── bg-shade-dark.png │ │ │ │ │ │ │ ├── bg-shade-light.png │ │ │ │ │ │ │ └── bg-shade-medium.png │ │ │ │ │ │ ├── sky-rtl.css │ │ │ │ │ │ └── sky.css │ │ │ │ │ │ └── zen │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── tab-bar.png │ │ │ │ │ │ ├── tab-left-ie6.png │ │ │ │ │ │ └── tab-right-ie6.png │ │ │ │ │ │ ├── zen-rtl.css │ │ │ │ │ │ └── zen.css │ │ │ │ │ └── tests │ │ │ │ │ └── quicktabs.test │ │ │ ├── custom │ │ │ │ ├── fhir_blocks │ │ │ │ │ ├── fhir_blocks.info │ │ │ │ │ ├── fhir_blocks.module │ │ │ │ │ └── templates │ │ │ │ │ │ ├── fhir_apis_sandox.tpl.php │ │ │ │ │ │ ├── fhir_app_gallery.tpl.php │ │ │ │ │ │ ├── fhir_copyright.tpl.php │ │ │ │ │ │ ├── fhir_get_started.tpl.php │ │ │ │ │ │ ├── fhir_logo_caption.tpl.php │ │ │ │ │ │ └── fhir_social_bottom.tpl.php │ │ │ │ ├── fhir_install │ │ │ │ │ ├── fhir_install.info │ │ │ │ │ ├── fhir_install.install │ │ │ │ │ └── fhir_install.module │ │ │ │ └── fhir_swagger │ │ │ │ │ ├── fhir_swagger.info │ │ │ │ │ ├── fhir_swagger.install_callbacks.inc │ │ │ │ │ ├── fhir_swagger.module │ │ │ │ │ └── swaggers │ │ │ │ │ ├── AllergyIntolerance-api.json │ │ │ │ │ ├── BasePath-api.json │ │ │ │ │ ├── CarePlan-api.json │ │ │ │ │ ├── Condition-api.json │ │ │ │ │ ├── Coverage-api.json │ │ │ │ │ ├── DiagnosticOrder-api.json │ │ │ │ │ ├── DiagnosticReport-api.json │ │ │ │ │ ├── DocumentReference-api.json │ │ │ │ │ ├── Encounter-api.json │ │ │ │ │ ├── Immunization-api.json │ │ │ │ │ ├── MedicationAdministration-api.json │ │ │ │ │ ├── MedicationDispense-api.json │ │ │ │ │ ├── MedicationOrder-api.json │ │ │ │ │ ├── MedicationStatement-api.json │ │ │ │ │ ├── OAuth-api.json │ │ │ │ │ ├── Observation-api.json │ │ │ │ │ ├── Patient-api.json │ │ │ │ │ ├── Practitioner-api.json │ │ │ │ │ ├── Procedure-api.json │ │ │ │ │ └── Schedule-api.json │ │ │ └── features │ │ │ │ └── fhir_custom │ │ │ │ ├── fhir_custom.context.inc │ │ │ │ ├── fhir_custom.features.fe_block_boxes.inc │ │ │ │ ├── fhir_custom.features.fe_block_settings.inc │ │ │ │ ├── fhir_custom.features.field_base.inc │ │ │ │ ├── fhir_custom.features.field_instance.inc │ │ │ │ ├── fhir_custom.features.filter.inc │ │ │ │ ├── fhir_custom.features.inc │ │ │ │ ├── fhir_custom.features.menu_custom.inc │ │ │ │ ├── fhir_custom.features.menu_links.inc │ │ │ │ ├── fhir_custom.features.node_export_features.inc │ │ │ │ ├── fhir_custom.features.taxonomy.inc │ │ │ │ ├── fhir_custom.features.user_permission.inc │ │ │ │ ├── fhir_custom.features.user_role.inc │ │ │ │ ├── fhir_custom.info │ │ │ │ ├── fhir_custom.module │ │ │ │ └── fhir_custom.views_default.inc │ │ └── themes │ │ │ ├── README.txt │ │ │ └── fhir_responsive │ │ │ ├── README.txt │ │ │ ├── css │ │ │ ├── fhir_responsive.css │ │ │ └── font_awesome │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── favicon.ico │ │ │ ├── fhir_responsive.info │ │ │ ├── images │ │ │ ├── apigee-footer-logo.png │ │ │ └── persistent-footer-logo.png │ │ │ ├── js │ │ │ └── fhir_responsive.js │ │ │ ├── logo.png │ │ │ ├── screenshot.png │ │ │ ├── template.php │ │ │ └── templates │ │ │ ├── README.txt │ │ │ └── pages │ │ │ └── page.tpl.php │ └── smartdocTemplate.hbr ├── gateway │ ├── README.md │ ├── api-proxies-deployed.txt │ ├── catch-all │ │ ├── apiproxy │ │ │ ├── catch-all.xml │ │ │ ├── policies │ │ │ │ ├── Fault_UnknownResource.xml │ │ │ │ ├── HPX_AddCORS.xml │ │ │ │ ├── HPX_CORSPreflight.xml │ │ │ │ ├── HPX_CreateRedirectionURL.xml │ │ │ │ ├── HPX_RemoveRequestHeader.xml │ │ │ │ └── HPX_SetRedirectionPayload.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ └── resources │ │ │ │ └── jsc │ │ │ │ └── HPX_CreateRedirectionURL.js │ │ ├── pom.xml │ │ └── setup.sh │ ├── datastore-connector │ │ ├── README.md │ │ └── apiproxy │ │ │ ├── datastoreRest.xml │ │ │ ├── policies │ │ │ ├── Assign-Authorization-Header.xml │ │ │ ├── Assign-Get-Entity-Response.xml │ │ │ ├── Assign-Original-Request-Verb.xml │ │ │ ├── Assign-POST-PUT-Response.xml │ │ │ ├── Create New Request For Update.xml │ │ │ ├── Create-Delete-Entity-Request.xml │ │ │ ├── Create-Insert-Entity-Request.xml │ │ │ ├── Create-Read-Entity-Request.xml │ │ │ ├── CreateUpdateEntityRequest.xml │ │ │ ├── Extract-Private-Config.xml │ │ │ ├── Extract-Variables.xml │ │ │ ├── Generate-JWT-Datastore.xml │ │ │ ├── JavaScript-assignFlow.xml │ │ │ ├── Lookup-Cache-Access-Token.xml │ │ │ ├── Populate-Cache-Access-Token.xml │ │ │ ├── Raise-Fault-Id-Missing.xml │ │ │ ├── Raise-Fault-Invalid-Path.xml │ │ │ ├── Service-Callout-Get-Access-Token.xml │ │ │ ├── Service-Callout-Get-Entity.xml │ │ │ └── Verify-API-Key.xml │ │ │ ├── proxies │ │ │ └── default.xml │ │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── assignGetResponse.js │ │ │ │ ├── assignTarget.js │ │ │ │ ├── createDeleteEntityRequest.js │ │ │ │ ├── createGetEntityRequest.js │ │ │ │ ├── createInsertEntityRequest.js │ │ │ │ ├── createNewDataForUpdate.js │ │ │ │ ├── createUpdateEntityRequest.js │ │ │ │ └── encodeDecodeDatastore.js │ │ │ └── targets │ │ │ └── default.xml │ ├── fhir-api │ │ ├── apiproxy │ │ │ ├── fhir-api.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AddDeveloperToCache.xml │ │ │ │ ├── HPX_CORSPreflight.xml │ │ │ │ ├── HPX_CORSSupport.xml │ │ │ │ ├── HPX_CheckPayloadRegex.xml │ │ │ │ ├── HPX_CheckQueryParamRegex.xml │ │ │ │ ├── HPX_CheckURIParamRegex.xml │ │ │ │ ├── HPX_Conformance_JSON.xml │ │ │ │ ├── HPX_Conformance_XML.xml │ │ │ │ ├── HPX_EnforceQuota.xml │ │ │ │ ├── HPX_EnforceRateLimit.xml │ │ │ │ ├── HPX_ExtractDeveloperInfoFromDeveloper.xml │ │ │ │ ├── HPX_ExtractDeveloperInfoFromDeveloperCache.xml │ │ │ │ ├── HPX_ExtractPrimaryResourceTypeAndId.xml │ │ │ │ ├── HPX_ExtractTokenAttributes.xml │ │ │ │ ├── HPX_Fault_BadRequest.xml │ │ │ │ ├── HPX_Fault_GenericFault.xml │ │ │ │ ├── HPX_Fault_InsufficientScope.xml │ │ │ │ ├── HPX_Fault_InvalidCredentials.xml │ │ │ │ ├── HPX_Fault_InvalidPayload.xml │ │ │ │ ├── HPX_Fault_JSError.xml │ │ │ │ ├── HPX_Fault_NoResponse.xml │ │ │ │ ├── HPX_Fault_QuotaViolation.xml │ │ │ │ ├── HPX_Fault_RegexThreat.xml │ │ │ │ ├── HPX_Fault_UnsupportedOperation.xml │ │ │ │ ├── HPX_Fault_UnsupportedResource.xml │ │ │ │ ├── HPX_GetDeveloperFromCache.xml │ │ │ │ ├── HPX_GetDeveloperInfo.xml │ │ │ │ ├── HPX_GetResponseFormatFromQueryParam.xml │ │ │ │ ├── HPX_InitialConfiguration_JS.xml │ │ │ │ ├── HPX_RaiseFault_Generic.xml │ │ │ │ ├── HPX_RemoveFormatQueryParam.xml │ │ │ │ ├── HPX_RemoveRequestHeader.xml │ │ │ │ ├── HPX_ReplaceInternalProxyLinkURLs.xml │ │ │ │ ├── HPX_ReplacePatientIdLiteral.xml │ │ │ │ ├── HPX_ServiceCallout.InvokeOPTIONS.xml │ │ │ │ ├── HPX_Servicecallout.InvokeDELETE.xml │ │ │ │ ├── HPX_Servicecallout.InvokeGET.xml │ │ │ │ ├── HPX_Servicecallout.InvokeGETB2B.xml │ │ │ │ ├── HPX_Servicecallout.InvokePOST.xml │ │ │ │ ├── HPX_Servicecallout.InvokePOSTSearch.xml │ │ │ │ ├── HPX_Servicecallout.InvokePUT.xml │ │ │ │ ├── HPX_SetAcceptHeader.xml │ │ │ │ ├── HPX_SetConnector.xml │ │ │ │ └── HPX_VerifyAccessToken.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ └── resources │ │ │ │ └── jsc │ │ │ │ ├── HPX_CheckQueryParamRegex.js │ │ │ │ ├── HPX_InitialConfiguration_JS.js │ │ │ │ ├── HPX_ReplaceInternalProxyLinkURLs.js │ │ │ │ └── HPX_ReplacePatientIdLiteral.js │ │ ├── config.orig │ │ ├── pom.xml │ │ └── setup.sh │ ├── fhir-connector-hapi-dstu2 │ │ ├── apiproxy │ │ │ ├── fhir-connector-hapi-dstu2.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AccessControl.xml │ │ │ │ ├── HPX_AssignPaginationAttributes.xml │ │ │ │ ├── HPX_AssignProxyResponse.xml │ │ │ │ ├── HPX_CheckJSONThreat.xml │ │ │ │ ├── HPX_CheckXMLThreat.xml │ │ │ │ ├── HPX_Fault_AccessControl.xml │ │ │ │ ├── HPX_Fault_BadRequest.xml │ │ │ │ ├── HPX_Fault_GenericFault.xml │ │ │ │ ├── HPX_Fault_InvalidPayload.xml │ │ │ │ ├── HPX_Fault_JSError.xml │ │ │ │ ├── HPX_Fault_TargetErrors.xml │ │ │ │ ├── HPX_InitialConfiguration_JS.xml │ │ │ │ ├── HPX_RaiseFault_Generic.xml │ │ │ │ ├── HPX_ReplaceTargetLinkURLs.xml │ │ │ │ ├── HPX_SetContentLength.xml │ │ │ │ ├── HPX_SetPatientId.xml │ │ │ │ ├── HPX_SetPatientIdForPatient.xml │ │ │ │ ├── HPX_SetPatientIdForSchedule.xml │ │ │ │ ├── HPX_SetResponseContentTypeToJSON.xml │ │ │ │ ├── HPX_SetResponseContentTypeToXML.xml │ │ │ │ ├── HPX_SetReturnType.xml │ │ │ │ ├── HPX_SetTargetBasepath.xml │ │ │ │ └── HPX_ValidateTargetResponse.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── jsc │ │ │ │ │ ├── HPX_AssignPaginationAttributes.js │ │ │ │ │ ├── HPX_ComputeContentLength.js │ │ │ │ │ ├── HPX_InitialConfiguration_JS.js │ │ │ │ │ ├── HPX_ReplaceTargetLinkURLs.js │ │ │ │ │ └── HPX_ValidateTargetResponse.js │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.orig │ │ ├── pom.xml │ │ ├── setup.sh │ │ └── setupconfig.orig │ ├── fhirsandbox-connector │ │ └── apiproxy │ │ │ ├── fhirsandbox-connector.xml │ │ │ ├── policies │ │ │ └── Assign-Org-Header.xml │ │ │ ├── proxies │ │ │ └── default.xml │ │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── assignOrgHeader.js │ │ │ └── targets │ │ │ └── default.xml │ ├── identity-authentication-spi │ │ ├── apiproxy │ │ │ ├── Identity-Authentication-API.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AssignIdentifierResponse.xml │ │ │ │ ├── HPX_Option.AssignResponse.xml │ │ │ │ └── HPX_RaiseFault.BadRequest.xml │ │ │ └── proxies │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── pom.xml │ │ ├── readme.txt │ │ └── tests │ │ │ └── sample-test.jmx │ ├── identity-consent-app │ │ ├── apiproxy │ │ │ ├── Identity-Consent-App.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AddVariablesToTargetRequest.xml │ │ │ │ ├── HPX_AssignIdentifyUserRequest.xml │ │ │ │ ├── HPX_AssignInvalidMSISDNError.xml │ │ │ │ ├── HPX_AssignPasswordResttingFailedError.xml │ │ │ │ ├── HPX_AssignRegistrationFlag.xml │ │ │ │ ├── HPX_AssignRequestToCreateUser.xml │ │ │ │ ├── HPX_AssignRequestToResetPassword.xml │ │ │ │ ├── HPX_AssignRequestToSetPassword.xml │ │ │ │ ├── HPX_AssignRequestToUpdateUserProfile.xml │ │ │ │ ├── HPX_AssignResetFlag.xml │ │ │ │ ├── HPX_AssignSendSMSAPIRequest.xml │ │ │ │ ├── HPX_AssignUserAlreadyExistsError.xml │ │ │ │ ├── HPX_AssignUserAppParams.xml │ │ │ │ ├── HPX_AssignUserDoesntExistError.xml │ │ │ │ ├── HPX_AssignUserRegistrationFailedError.xml │ │ │ │ ├── HPX_AssignValidateUserRequest.xml │ │ │ │ ├── HPX_AssignlogoutRedircetUri.xml │ │ │ │ ├── HPX_CORS.xml │ │ │ │ ├── HPX_CORSPreflight.xml │ │ │ │ ├── HPX_CheckAlreadyConsented.ServiceCallout.xml │ │ │ │ ├── HPX_CheckMSISDNExists.ServiceCallout.xml │ │ │ │ ├── HPX_CheckPinEntryTries_JS.xml │ │ │ │ ├── HPX_CheckUserExists.ServiceCallout.xml │ │ │ │ ├── HPX_CreateUser.ServiceCallout.xml │ │ │ │ ├── HPX_ExtractCheckAlreadyConsentedResponse.xml │ │ │ │ ├── HPX_ExtractIdentifyUserResponse.xml │ │ │ │ ├── HPX_ExtractResetPasswordUserDetails.xml │ │ │ │ ├── HPX_ExtractSessionId.xml │ │ │ │ ├── HPX_ExtractSessionIdFromURL.xml │ │ │ │ ├── HPX_ExtractSessionVariables.xml │ │ │ │ ├── HPX_ExtractUserAttributeAndAssignToReq.xml │ │ │ │ ├── HPX_ExtractUserCredentails.xml │ │ │ │ ├── HPX_ExtractUserDetails.xml │ │ │ │ ├── HPX_ExtractUserIdFromResponse.xml │ │ │ │ ├── HPX_ExtractValidateUserResponse.xml │ │ │ │ ├── HPX_GenerateAuthCode.AssignRequest.xml │ │ │ │ ├── HPX_GenerateAuthCode.Callout.xml │ │ │ │ ├── HPX_GenerateAuthCode.ExtractResponse.xml │ │ │ │ ├── HPX_GenerateCookieUUID.xml │ │ │ │ ├── HPX_GenerateUUID.xml │ │ │ │ ├── HPX_GetMsisdnFromHeader.xml │ │ │ │ ├── HPX_GetMsisdnFromRequest.xml │ │ │ │ ├── HPX_GetUserApps.ServiceCallout.xml │ │ │ │ ├── HPX_GetUserProfileFromUserManagement.xml │ │ │ │ ├── HPX_InvalidateAccessToken.xml │ │ │ │ ├── HPX_InvalidateSession.xml │ │ │ │ ├── HPX_ModifyNodeTargetRequestForIdentifiedUser.xml │ │ │ │ ├── HPX_ModifyReqToRegisterUser.xml │ │ │ │ ├── HPX_OauthAOC.redirectToRedirectFlow.xml │ │ │ │ ├── HPX_PageInterceptorJS.xml │ │ │ │ ├── HPX_RaiseFlagForUserSelfServiceFlow.xml │ │ │ │ ├── HPX_ReadSessionCookie_JS.xml │ │ │ │ ├── HPX_RedirectErrorInAuthorize.xml │ │ │ │ ├── HPX_RedirectErrorToCallbackURI.xml │ │ │ │ ├── HPX_RedirectToIndex.xml │ │ │ │ ├── HPX_ResetPassword.ServiceCallout.xml │ │ │ │ ├── HPX_RetrieveCodeFromURL_JS.xml │ │ │ │ ├── HPX_RevokeUserConsent.ServiceCallout.xml │ │ │ │ ├── HPX_SendCookieInResposne.xml │ │ │ │ ├── HPX_SendSMS.ServiceCallout.xml │ │ │ │ ├── HPX_ServiceCallout.IdentifyUser.xml │ │ │ │ ├── HPX_ServiceCallout.ValidateUser.xml │ │ │ │ ├── HPX_Session.GetFromCache.xml │ │ │ │ ├── HPX_Session.SetInCache.xml │ │ │ │ ├── HPX_SetFlowErrorForInvalidCode.xml │ │ │ │ ├── HPX_SetFlowErrorFromQueryParam.xml │ │ │ │ ├── HPX_SetPassword.ServiceCallout.xml │ │ │ │ ├── HPX_SetSessionError.xml │ │ │ │ ├── HPX_SetUserVariableInSession.xml │ │ │ │ ├── HPX_SetUserVariableJson.xml │ │ │ │ ├── HPX_SetVariablesInSession.xml │ │ │ │ ├── HPX_UpdateUserProfile.ServiceCallout.xml │ │ │ │ ├── HPX_UserJSON.GetFromCache.xml │ │ │ │ ├── HPX_ValidatePin.ServiceCallout.xml │ │ │ │ ├── HPX_ValidateScopeAgainstPreviousConsentedScope_JS.xml │ │ │ │ ├── HPX_extractUserIdFromUserJSON.xml │ │ │ │ ├── HPX_generateAuthCode.xml │ │ │ │ └── HPX_redirectToConsent.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ ├── jsc │ │ │ │ │ ├── HPX_CheckPinEntryTries.js │ │ │ │ │ ├── HPX_CreateSessionJson.js │ │ │ │ │ ├── HPX_GenerateIdForCookie.js │ │ │ │ │ ├── HPX_GenerateUUID.js │ │ │ │ │ ├── HPX_GetSessionJson.js │ │ │ │ │ ├── HPX_PageInterceptor.js │ │ │ │ │ ├── HPX_readCookie.js │ │ │ │ │ ├── HPX_retrieveCodeFromURL.js │ │ │ │ │ └── HPX_validateScopeAgainstPreviousConsentedScope.js │ │ │ │ └── node │ │ │ │ │ ├── app.js │ │ │ │ │ ├── config.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── jquery-1.10.2.js │ │ │ │ │ ├── stylesheets │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── normalize.css │ │ │ │ │ │ └── style.css │ │ │ │ │ └── ui │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── CRONMI__.ttf │ │ │ │ │ │ ├── CRONOSMM.TTF │ │ │ │ │ │ ├── CronosPro-Bold.otf │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Colombia.png │ │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ │ ├── Switch.png │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── close-icon.png │ │ │ │ │ │ ├── close-icon_old.png │ │ │ │ │ │ ├── error-close.png │ │ │ │ │ │ ├── error-info.png │ │ │ │ │ │ ├── facebook-circle.png │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ │ │ ├── Chad.png │ │ │ │ │ │ │ ├── Colombia.png │ │ │ │ │ │ │ ├── Congo-Brazzaville.png │ │ │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ │ │ ├── El Salvador.png │ │ │ │ │ │ │ └── Thumbs.db │ │ │ │ │ │ ├── google+-circle.png │ │ │ │ │ │ ├── icon1.png │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── aplicacion.png │ │ │ │ │ │ │ ├── billetera.png │ │ │ │ │ │ │ ├── home (1).png │ │ │ │ │ │ │ ├── img_feature.jpg │ │ │ │ │ │ │ ├── img_feature_circular.png │ │ │ │ │ │ │ ├── img_smart.jpg │ │ │ │ │ │ │ ├── img_smart_circular.png │ │ │ │ │ │ │ └── usuario.png │ │ │ │ │ │ ├── linkedin-circle.png │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── logo_old.png │ │ │ │ │ │ ├── mobile-circle.png │ │ │ │ │ │ ├── msn.png │ │ │ │ │ │ ├── twitter-circle.png │ │ │ │ │ │ ├── twitter.png │ │ │ │ │ │ └── yahoo.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── flow1.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── revoke_consent.js │ │ │ │ │ │ └── validations.js │ │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ │ │ ├── navbar-fixed-top.css │ │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── common.scss │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ ├── main.scss │ │ │ │ │ │ └── media-queries.scss │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ ├── header.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ └── media-queries.css │ │ │ │ │ ├── routes │ │ │ │ │ └── index.js │ │ │ │ │ └── views │ │ │ │ │ ├── consent.ejs │ │ │ │ │ ├── errorflow.ejs │ │ │ │ │ ├── index.ejs │ │ │ │ │ ├── layout.ejs │ │ │ │ │ ├── msisdn.ejs │ │ │ │ │ ├── myapps.ejs │ │ │ │ │ ├── myprofile.ejs │ │ │ │ │ ├── pin.ejs │ │ │ │ │ ├── profile_edit.ejs │ │ │ │ │ ├── recovery.ejs │ │ │ │ │ ├── register.ejs │ │ │ │ │ └── socialRegister.ejs │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── config.orig │ │ ├── pom.xml │ │ ├── readme.txt │ │ └── tests │ │ │ └── sample-test.jmx │ ├── identity-consentmgmt-api │ │ ├── apiproxy │ │ │ ├── identity-consent-management.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AccessTokenValidation.xml │ │ │ │ ├── HPX_AssignApplicationNameFromAccessToken.xml │ │ │ │ ├── HPX_AssignApplicationNameFromVerifyClientId.xml │ │ │ │ ├── HPX_AssignCreateConsentFlowResponse.xml │ │ │ │ ├── HPX_AssignRequestPayloadToFlowVar.xml │ │ │ │ ├── HPX_ConstructErrorResponse.xml │ │ │ │ ├── HPX_CreateResposneContent_JS.xml │ │ │ │ ├── HPX_DeleteExistingSimilarConsent.xml │ │ │ │ ├── HPX_ExtractCreateSSOTokenReqVariables.xml │ │ │ │ ├── HPX_ExtractPOSTRequestJSONVariables.xml │ │ │ │ ├── HPX_ExtractPUTRequestJSONVariables.xml │ │ │ │ ├── HPX_ExtractTargetResponseParameters.xml │ │ │ │ ├── HPX_GetSSOTokenFromRequest_JS.xml │ │ │ │ ├── HPX_ModifyCreateSSOTokenRequestToAddParams.xml │ │ │ │ ├── HPX_ModifyPUTRequestToAddParams.xml │ │ │ │ ├── HPX_ModifyRequestToAddParams.xml │ │ │ │ ├── HPX_Option.AssignResponse.xml │ │ │ │ ├── HPX_RaiseFault.ApplicationKey.xml │ │ │ │ ├── HPX_RaiseFault.InvalidAccessToken.xml │ │ │ │ ├── HPX_RaiseFault_BadRequest.xml │ │ │ │ ├── HPX_RaiseFault_InvalidQueryParam.xml │ │ │ │ ├── HPX_RaiseFault_Invalid_SSO_Operation.xml │ │ │ │ ├── HPX_RaiseFault_Unauthorized.xml │ │ │ │ ├── HPX_SetTokenLifeInRequest.xml │ │ │ │ ├── HPX_ValidateCreateSSOTokenReqVariables_JS.xml │ │ │ │ ├── HPX_ValidatePUTRequestJSONParams_JS.xml │ │ │ │ ├── HPX_ValidateRequestJSONParams_JS.xml │ │ │ │ ├── HPX_VerifyClientId.xml │ │ │ │ ├── HPX_authenticationFailed.xml │ │ │ │ ├── HPX_authorizationFailed.xml │ │ │ │ ├── HPX_challengeResponse.xml │ │ │ │ ├── HPX_setGrantType.xml │ │ │ │ └── HPX_validateBasicAuth.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ ├── jsc │ │ │ │ │ ├── HPX_createResposneContent.js │ │ │ │ │ ├── HPX_getSSOTokenFromRequest.js │ │ │ │ │ ├── HPX_validateCreateSSOTokenReqVariables.js │ │ │ │ │ ├── HPX_validatePUTRequestJSONParams.js │ │ │ │ │ └── HPX_validateRequestJSONParams.js │ │ │ │ └── node │ │ │ │ │ ├── app.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes │ │ │ │ │ ├── index.js │ │ │ │ │ └── usergrid.js │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── config.orig │ │ ├── pom.xml │ │ ├── readme.txt │ │ └── tests │ │ │ └── sample-test.jmx │ ├── identity-demo-app │ │ ├── apiproxy │ │ │ ├── identity-demo-app.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AddAuthorizationReqVarInReq.xml │ │ │ │ ├── HPX_AddEncounterDetailsToRequest.xml │ │ │ │ ├── HPX_AddPatientDetailsToRequest.xml │ │ │ │ ├── HPX_AddPatientEncounterDetailsToRequestt.xml │ │ │ │ ├── HPX_AddUserDetailsToRequest.xml │ │ │ │ ├── HPX_AssignGetAccessTokenRequest.xml │ │ │ │ ├── HPX_AssignGetUserDetailsRequest.xml │ │ │ │ ├── HPX_AssignReadEncounterRequest.xml │ │ │ │ ├── HPX_AssignReadPatientEncounterRequest.xml │ │ │ │ ├── HPX_AssignReadPatientRequest.xml │ │ │ │ ├── HPX_ExtractAccesTokenFromQueryParams.xml │ │ │ │ ├── HPX_ExtractAccessTokenFromResponse.xml │ │ │ │ ├── HPX_ExtractEncounterDetailsFromResponse.xml │ │ │ │ ├── HPX_ExtractEncounterIdFromQueryParams.xml │ │ │ │ ├── HPX_ExtractPatientDetailsFromResponse.xml │ │ │ │ ├── HPX_ExtractPatientEncounterDetailsFromResponse.xml │ │ │ │ ├── HPX_ExtractUserDetailsFromResponse.xml │ │ │ │ ├── HPX_GetAccessToken_ServiceCallout.xml │ │ │ │ ├── HPX_GetUserDetails_ServiceCallout.xml │ │ │ │ ├── HPX_GetVariablesFromSession.xml │ │ │ │ ├── HPX_ReadEncounterById_ServiceCallout.xml │ │ │ │ ├── HPX_ReadPatientEncounterDetails_ServiceCallout.xml │ │ │ │ ├── HPX_ReadPatient_Service-Callout.xml │ │ │ │ ├── HPX_RedirectToIndex.xml │ │ │ │ └── HPX_SetVariablesToSession.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── node │ │ │ │ │ ├── app.js │ │ │ │ │ ├── node_modules.zip │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ │ ├── error.jpg │ │ │ │ │ │ ├── login.bck.png │ │ │ │ │ │ ├── login.png │ │ │ │ │ │ ├── login1.png │ │ │ │ │ │ ├── login_old.png │ │ │ │ │ │ ├── logo.jpg │ │ │ │ │ │ ├── options.png │ │ │ │ │ │ ├── spot.jpg │ │ │ │ │ │ └── spot_1.jpg │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── clientapp.css │ │ │ │ │ │ ├── clientapp.min.css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ ├── normalize.css │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── routes │ │ │ │ │ └── index.js │ │ │ │ │ └── views │ │ │ │ │ ├── encounter.ejs │ │ │ │ │ ├── encounters.ejs │ │ │ │ │ ├── error.ejs │ │ │ │ │ ├── index.ejs │ │ │ │ │ └── success.ejs │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── config.orig │ │ ├── pom.xml │ │ └── readme.txt │ ├── identity-oauthv2-api │ │ ├── apiproxy │ │ │ ├── oauthv2.xml │ │ │ ├── policies │ │ │ │ ├── HPX_AccessToken.ModifyReponse.xml │ │ │ │ ├── HPX_AccessTokenResponseCC.xml │ │ │ │ ├── HPX_AccesstokenValidation.xml │ │ │ │ ├── HPX_AllowPatientReadScopes.xml │ │ │ │ ├── HPX_AllowPatientWriteScopes.xml │ │ │ │ ├── HPX_AllowUserAllScopes.xml │ │ │ │ ├── HPX_AllowUserReadScopes.xml │ │ │ │ ├── HPX_AllowUserWriteScopes.xml │ │ │ │ ├── HPX_AssignIdentityMessageResponse.xml │ │ │ │ ├── HPX_AssignIssuer.xml │ │ │ │ ├── HPX_AssignReplayAttackError.xml │ │ │ │ ├── HPX_AssignRequestVaribales.xml │ │ │ │ ├── HPX_AssignStoreConsentRequest.xml │ │ │ │ ├── HPX_AssignUserId.xml │ │ │ │ ├── HPX_CORS.xml │ │ │ │ ├── HPX_CORSPreflight.xml │ │ │ │ ├── HPX_CheckAlreadyConsented.ServiceCallout.xml │ │ │ │ ├── HPX_CheckNonceReplayAttack.xml │ │ │ │ ├── HPX_ConvertToJSON.xml │ │ │ │ ├── HPX_CreateScopeArray_JS.xml │ │ │ │ ├── HPX_CustomizeUserProfile_JS.xml │ │ │ │ ├── HPX_ExtractAccessTokenResponse.xml │ │ │ │ ├── HPX_ExtractAuthReqParams.xml │ │ │ │ ├── HPX_ExtractSessionId.xml │ │ │ │ ├── HPX_ExtractUserProfileResponse.xml │ │ │ │ ├── HPX_ExtractUserProfileResponse.xml.bak │ │ │ │ ├── HPX_GenerateAccessToken.Response.xml │ │ │ │ ├── HPX_GenerateAccessTokenClientCredentials.xml │ │ │ │ ├── HPX_GenerateUUID.xml │ │ │ │ ├── HPX_GetApiProduct.xml │ │ │ │ ├── HPX_GetAuthCodeAttributes.xml │ │ │ │ ├── HPX_GetConsentStatus.xml │ │ │ │ ├── HPX_GetScopes.xml │ │ │ │ ├── HPX_GetUserProfileFromAppServices.xml │ │ │ │ ├── HPX_JwtTokenSigning.xml │ │ │ │ ├── HPX_RaiseFault.ApplicationKey.xml │ │ │ │ ├── HPX_RaiseFault.InvalidAuthorizationRequest.xml │ │ │ │ ├── HPX_RaiseFault.InvalidRequest.xml │ │ │ │ ├── HPX_ReturnGenericFaultMessage.xml │ │ │ │ ├── HPX_SaveNonceInCache.xml │ │ │ │ ├── HPX_SendCookieInResposne.xml │ │ │ │ ├── HPX_Session.GetFromCache.xml │ │ │ │ ├── HPX_Session.SetInCache.xml │ │ │ │ ├── HPX_SetSessionPayload.xml │ │ │ │ ├── HPX_StoreConsent.ServiceCallout.xml │ │ │ │ ├── HPX_TokenErrorResponse.xml │ │ │ │ ├── HPX_ValidateRequest.xml │ │ │ │ ├── HPX_ValidateScopeValues_JS.xml │ │ │ │ ├── HPX_generateAccessToken.xml │ │ │ │ ├── HPX_generateAccessToken.xml.bak │ │ │ │ ├── HPX_generateAuthCode.xml │ │ │ │ ├── HPX_generateAuthCode.xml.bak │ │ │ │ ├── HPX_generateRefreshToken.xml │ │ │ │ ├── HPX_handleBadRequest.xml │ │ │ │ ├── HPX_redirectToConsent.xml │ │ │ │ └── HPX_validateApiKey.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ ├── java │ │ │ │ │ └── HPX_jsontoken.zip │ │ │ │ └── jsc │ │ │ │ │ ├── HPX_CreateScopeArray.js │ │ │ │ │ ├── HPX_ExtractVariablesFromSession.js │ │ │ │ │ ├── HPX_GenerateUUID.js │ │ │ │ │ ├── HPX_ValidateRequest.js │ │ │ │ │ ├── HPX_ValidateScope.js │ │ │ │ │ └── HPX_customizeUserProfileUsingScope.js │ │ │ └── targets │ │ │ │ └── CodeGenrateFlow.xml │ │ ├── config.json │ │ ├── config.orig │ │ ├── pom.xml │ │ ├── readme.txt │ │ └── tests │ │ │ └── sample-test.jmx │ ├── identity-sms-token-api │ │ ├── apiproxy │ │ │ ├── identity-sms-token.xml │ │ │ ├── policies │ │ │ │ ├── HPX_generate-token.xml │ │ │ │ ├── HPX_get-identifier-token.xml │ │ │ │ ├── HPX_get-identifier.xml │ │ │ │ ├── HPX_get-token-cache.xml │ │ │ │ ├── HPX_modify-token-cache.xml │ │ │ │ ├── HPX_set-create-response.xml │ │ │ │ ├── HPX_set-failure-token-response.xml │ │ │ │ ├── HPX_set-sms-payload.xml │ │ │ │ ├── HPX_set-success-token-response.xml │ │ │ │ ├── HPX_set-token-cache.xml │ │ │ │ └── HPX_verify-api-key.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── jsc │ │ │ │ │ ├── HPX_generate-token.js │ │ │ │ │ └── HPX_token.js │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── pom.xml │ │ └── readme.txt │ ├── identity-usermgmt-api │ │ ├── apiproxy │ │ │ ├── identity-users.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── node │ │ │ │ │ ├── Router │ │ │ │ │ ├── Route.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── request.js │ │ │ │ │ ├── response.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── server.js │ │ │ │ │ └── user.js │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── config.orig │ │ ├── pom.xml │ │ ├── readme.txt │ │ └── tests │ │ │ └── sample-test.jmx │ └── oauth-b2b │ │ ├── apiproxy │ │ ├── oauth-b2b.xml │ │ ├── policies │ │ │ ├── HPX_Fault_InvalidRequest.xml │ │ │ ├── HPX_Fault_UnsupportedOperation.xml │ │ │ ├── HPX_GenerateAccessToken.Response.xml │ │ │ ├── HPX_GenerateAccessToken.xml │ │ │ └── HPX_RaiseFault_Generic.xml │ │ └── proxies │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── setup.sh └── java │ ├── jwt │ ├── include │ │ ├── .DS_Store │ │ ├── commons-codec-1.8.jar │ │ ├── gson-2.2.2.jar │ │ ├── joda-time-2.0.jar │ │ ├── jsontoken-1.0.jar │ │ └── jwtTokenSigning.jar │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── grass │ │ └── identity │ │ └── JwtSign │ │ ├── JWT_Creator.java │ │ └── JWT_Handler.java │ └── lib │ ├── expressions-1.0.0.jar │ └── message-flow-1.0.0.jar └── tests └── postman ├── README.md ├── env.json └── fhir-apis-collection.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/config.yml -------------------------------------------------------------------------------- /config.yml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/config.yml.orig -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/package.json -------------------------------------------------------------------------------- /readme-images/devportal/Fig01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig01.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig02.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig03.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig04.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig05.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig07.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig09.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig10.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig11.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig12.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig13.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig14.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig15.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig16.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig17.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig18.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig19.jpg -------------------------------------------------------------------------------- /readme-images/devportal/Fig20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/devportal/Fig20.jpg -------------------------------------------------------------------------------- /readme-images/postman/Fig01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/readme-images/postman/Fig01.jpg -------------------------------------------------------------------------------- /src/developerportal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/LICENSE.md -------------------------------------------------------------------------------- /src/developerportal/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/README.MD -------------------------------------------------------------------------------- /src/developerportal/all/libraries/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/flexslider.css -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.eot -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.svg -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.ttf -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/fonts/flexslider-icon.woff -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/jquery.flexslider-min.js -------------------------------------------------------------------------------- /src/developerportal/all/libraries/flexslider/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/libraries/flexslider/jquery.flexslider.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/LICENSE.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/contact_forms.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/contact_forms.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/contact_forms.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/contact_forms.install -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/contact_forms.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/contact_forms.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/contact_forms.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/contact_forms.pot -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/contact_forms/contact_forms_int/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/contact_forms/contact_forms_int/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/LICENSE.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/README.md -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/css/flexslider_img.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/css/flexslider_img.css -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-1.JPG -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-2.JPG -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-3.JPG -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/images/flexslider-sample-4.JPG -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/assets/js/flexslider.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/assets/js/flexslider.load.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider-logo.png -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.admin.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.api.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.install -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.make.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.make.example -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider.test -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider_example/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider_example/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider_fields/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider_fields/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider_views/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider_views/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/flexslider_views/flexslider_views.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/flexslider_views/flexslider_views.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/theme/flexslider.theme.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/theme/flexslider.theme.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider/theme/flexslider.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider/theme/flexslider.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider_views_slideshow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider_views_slideshow/LICENSE.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/flexslider_views_slideshow/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/flexslider_views_slideshow/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/LICENSE.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/add-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/add-tab.gif -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/css/quicktabs-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/css/quicktabs-admin.css -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/css/quicktabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/css/quicktabs.css -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/delete-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/delete-tab.gif -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/includes/quicktabs_style_plugin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/includes/quicktabs_style_plugin.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/js/qt_accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/js/qt_accordion.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/js/qt_ui_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/js/qt_ui_tabs.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/js/quicktabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/js/quicktabs.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/js/quicktabs_bbq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/js/quicktabs_bbq.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/js/quicktabs_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/js/quicktabs_form.js -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickAccordion.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickAccordion.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickBlockContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickBlockContent.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickCallbackContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickCallbackContent.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickNodeContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickNodeContent.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickQtabsContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickQtabsContent.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickQuicktabs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickQuicktabs.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickUiTabs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickUiTabs.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/plugins/QuickViewContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/plugins/QuickViewContent.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.admin.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.api.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.classes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.classes.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.install -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/quicktabs.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/quicktabs.views.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/contrib/quicktabs/tests/quicktabs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/contrib/quicktabs/tests/quicktabs.test -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/fhir_blocks.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/fhir_blocks.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/fhir_blocks.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/fhir_blocks.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_apis_sandox.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_apis_sandox.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_app_gallery.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_app_gallery.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_copyright.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_copyright.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_get_started.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_get_started.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_logo_caption.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_logo_caption.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_social_bottom.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_blocks/templates/fhir_social_bottom.tpl.php -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_install/fhir_install.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_install/fhir_install.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_install/fhir_install.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_install/fhir_install.install -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_install/fhir_install.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_install/fhir_install.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.install_callbacks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.install_callbacks.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/fhir_swagger.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/AllergyIntolerance-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/AllergyIntolerance-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/BasePath-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/BasePath-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/CarePlan-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/CarePlan-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Condition-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Condition-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Coverage-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Coverage-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/DiagnosticOrder-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/DiagnosticOrder-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/DiagnosticReport-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/DiagnosticReport-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/DocumentReference-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/DocumentReference-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Encounter-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Encounter-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Immunization-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Immunization-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationDispense-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationDispense-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationOrder-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationOrder-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationStatement-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/MedicationStatement-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/OAuth-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/OAuth-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Observation-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Observation-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Patient-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Patient-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Practitioner-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Practitioner-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Procedure-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Procedure-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/custom/fhir_swagger/swaggers/Schedule-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/custom/fhir_swagger/swaggers/Schedule-api.json -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.context.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.context.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.field_base.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.field_base.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.filter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.filter.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.menu_custom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.menu_custom.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.menu_links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.menu_links.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.taxonomy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.taxonomy.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.user_role.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.features.user_role.inc -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.info -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.module -------------------------------------------------------------------------------- /src/developerportal/all/modules/features/fhir_custom/fhir_custom.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/modules/features/fhir_custom/fhir_custom.views_default.inc -------------------------------------------------------------------------------- /src/developerportal/all/themes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/fhir_responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/fhir_responsive.css -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/animated.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/core.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/fixed-width.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/font-awesome.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/icons.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/larger.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/list.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/mixins.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/path.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/stacked.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/less/variables.less -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_animated.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_core.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_icons.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_larger.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_list.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_path.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/_variables.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/css/font_awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/favicon.ico -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/fhir_responsive.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/fhir_responsive.info -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/images/apigee-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/images/apigee-footer-logo.png -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/images/persistent-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/images/persistent-footer-logo.png -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/js/fhir_responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/js/fhir_responsive.js -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/logo.png -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/screenshot.png -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/template.php -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/templates/README.txt -------------------------------------------------------------------------------- /src/developerportal/all/themes/fhir_responsive/templates/pages/page.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/all/themes/fhir_responsive/templates/pages/page.tpl.php -------------------------------------------------------------------------------- /src/developerportal/smartdocTemplate.hbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/developerportal/smartdocTemplate.hbr -------------------------------------------------------------------------------- /src/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/README.md -------------------------------------------------------------------------------- /src/gateway/api-proxies-deployed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/api-proxies-deployed.txt -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/catch-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/catch-all.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/Fault_UnknownResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/Fault_UnknownResource.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/HPX_AddCORS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/HPX_AddCORS.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/HPX_CORSPreflight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/HPX_CORSPreflight.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/HPX_CreateRedirectionURL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/HPX_CreateRedirectionURL.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/HPX_RemoveRequestHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/HPX_RemoveRequestHeader.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/policies/HPX_SetRedirectionPayload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/policies/HPX_SetRedirectionPayload.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/apiproxy/resources/jsc/HPX_CreateRedirectionURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/apiproxy/resources/jsc/HPX_CreateRedirectionURL.js -------------------------------------------------------------------------------- /src/gateway/catch-all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/pom.xml -------------------------------------------------------------------------------- /src/gateway/catch-all/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/catch-all/setup.sh -------------------------------------------------------------------------------- /src/gateway/datastore-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/README.md -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/datastoreRest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/datastoreRest.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Assign-Authorization-Header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Assign-Authorization-Header.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Assign-Get-Entity-Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Assign-Get-Entity-Response.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Assign-Original-Request-Verb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Assign-Original-Request-Verb.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Assign-POST-PUT-Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Assign-POST-PUT-Response.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Create New Request For Update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Create New Request For Update.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Create-Delete-Entity-Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Create-Delete-Entity-Request.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Create-Insert-Entity-Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Create-Insert-Entity-Request.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Create-Read-Entity-Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Create-Read-Entity-Request.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/CreateUpdateEntityRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/CreateUpdateEntityRequest.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Extract-Private-Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Extract-Private-Config.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Extract-Variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Extract-Variables.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Generate-JWT-Datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Generate-JWT-Datastore.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/JavaScript-assignFlow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/JavaScript-assignFlow.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Lookup-Cache-Access-Token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Lookup-Cache-Access-Token.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Populate-Cache-Access-Token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Populate-Cache-Access-Token.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Raise-Fault-Id-Missing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Raise-Fault-Id-Missing.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Raise-Fault-Invalid-Path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Raise-Fault-Invalid-Path.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Service-Callout-Get-Access-Token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Service-Callout-Get-Access-Token.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Service-Callout-Get-Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Service-Callout-Get-Entity.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/policies/Verify-API-Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/policies/Verify-API-Key.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/assignGetResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/assignGetResponse.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/assignTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/assignTarget.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/createDeleteEntityRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/createDeleteEntityRequest.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/createGetEntityRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/createGetEntityRequest.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/createInsertEntityRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/createInsertEntityRequest.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/createNewDataForUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/createNewDataForUpdate.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/createUpdateEntityRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/createUpdateEntityRequest.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/resources/jsc/encodeDecodeDatastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/resources/jsc/encodeDecodeDatastore.js -------------------------------------------------------------------------------- /src/gateway/datastore-connector/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/datastore-connector/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/fhir-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/fhir-api.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_AddDeveloperToCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_AddDeveloperToCache.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_CORSPreflight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_CORSPreflight.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_CORSSupport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_CORSSupport.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_CheckPayloadRegex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_CheckPayloadRegex.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_CheckQueryParamRegex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_CheckQueryParamRegex.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_CheckURIParamRegex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_CheckURIParamRegex.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Conformance_JSON.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Conformance_JSON.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Conformance_XML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Conformance_XML.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_EnforceQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_EnforceQuota.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_EnforceRateLimit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_EnforceRateLimit.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ExtractDeveloperInfoFromDeveloper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ExtractDeveloperInfoFromDeveloper.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ExtractDeveloperInfoFromDeveloperCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ExtractDeveloperInfoFromDeveloperCache.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ExtractPrimaryResourceTypeAndId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ExtractPrimaryResourceTypeAndId.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ExtractTokenAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ExtractTokenAttributes.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_BadRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_BadRequest.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_GenericFault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_GenericFault.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InsufficientScope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InsufficientScope.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InvalidCredentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InvalidCredentials.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InvalidPayload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_InvalidPayload.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_JSError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_JSError.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_NoResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_NoResponse.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_QuotaViolation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_QuotaViolation.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_RegexThreat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_RegexThreat.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_UnsupportedOperation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_UnsupportedOperation.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Fault_UnsupportedResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Fault_UnsupportedResource.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_GetDeveloperFromCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_GetDeveloperFromCache.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_GetDeveloperInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_GetDeveloperInfo.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_GetResponseFormatFromQueryParam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_GetResponseFormatFromQueryParam.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_InitialConfiguration_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_InitialConfiguration_JS.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_RaiseFault_Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_RaiseFault_Generic.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_RemoveFormatQueryParam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_RemoveFormatQueryParam.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_RemoveRequestHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_RemoveRequestHeader.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ReplaceInternalProxyLinkURLs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ReplaceInternalProxyLinkURLs.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ReplacePatientIdLiteral.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ReplacePatientIdLiteral.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_ServiceCallout.InvokeOPTIONS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_ServiceCallout.InvokeOPTIONS.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeDELETE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeDELETE.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeGET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeGET.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeGETB2B.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokeGETB2B.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePOST.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePOST.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePOSTSearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePOSTSearch.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePUT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_Servicecallout.InvokePUT.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_SetAcceptHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_SetAcceptHeader.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_SetConnector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_SetConnector.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/policies/HPX_VerifyAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/policies/HPX_VerifyAccessToken.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/resources/jsc/HPX_CheckQueryParamRegex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/resources/jsc/HPX_CheckQueryParamRegex.js -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/resources/jsc/HPX_InitialConfiguration_JS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/resources/jsc/HPX_InitialConfiguration_JS.js -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/resources/jsc/HPX_ReplaceInternalProxyLinkURLs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/resources/jsc/HPX_ReplaceInternalProxyLinkURLs.js -------------------------------------------------------------------------------- /src/gateway/fhir-api/apiproxy/resources/jsc/HPX_ReplacePatientIdLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/apiproxy/resources/jsc/HPX_ReplacePatientIdLiteral.js -------------------------------------------------------------------------------- /src/gateway/fhir-api/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/config.orig -------------------------------------------------------------------------------- /src/gateway/fhir-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/pom.xml -------------------------------------------------------------------------------- /src/gateway/fhir-api/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-api/setup.sh -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/fhir-connector-hapi-dstu2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/fhir-connector-hapi-dstu2.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AccessControl.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AssignPaginationAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AssignPaginationAttributes.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AssignProxyResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_AssignProxyResponse.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_CheckJSONThreat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_CheckJSONThreat.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_CheckXMLThreat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_CheckXMLThreat.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_AccessControl.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_BadRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_BadRequest.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_GenericFault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_GenericFault.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_InvalidPayload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_InvalidPayload.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_JSError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_JSError.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_TargetErrors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_Fault_TargetErrors.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_InitialConfiguration_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_InitialConfiguration_JS.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_RaiseFault_Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_RaiseFault_Generic.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_ReplaceTargetLinkURLs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_ReplaceTargetLinkURLs.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetContentLength.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetContentLength.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientId.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientIdForPatient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientIdForPatient.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientIdForSchedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetPatientIdForSchedule.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetReturnType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetReturnType.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetTargetBasepath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_SetTargetBasepath.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_ValidateTargetResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/policies/HPX_ValidateTargetResponse.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ComputeContentLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ComputeContentLength.js -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ReplaceTargetLinkURLs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ReplaceTargetLinkURLs.js -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ValidateTargetResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/resources/jsc/HPX_ValidateTargetResponse.js -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/config.orig -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/pom.xml -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/setup.sh -------------------------------------------------------------------------------- /src/gateway/fhir-connector-hapi-dstu2/setupconfig.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhir-connector-hapi-dstu2/setupconfig.orig -------------------------------------------------------------------------------- /src/gateway/fhirsandbox-connector/apiproxy/fhirsandbox-connector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhirsandbox-connector/apiproxy/fhirsandbox-connector.xml -------------------------------------------------------------------------------- /src/gateway/fhirsandbox-connector/apiproxy/policies/Assign-Org-Header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhirsandbox-connector/apiproxy/policies/Assign-Org-Header.xml -------------------------------------------------------------------------------- /src/gateway/fhirsandbox-connector/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhirsandbox-connector/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/fhirsandbox-connector/apiproxy/resources/jsc/assignOrgHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhirsandbox-connector/apiproxy/resources/jsc/assignOrgHeader.js -------------------------------------------------------------------------------- /src/gateway/fhirsandbox-connector/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/fhirsandbox-connector/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/apiproxy/Identity-Authentication-API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/apiproxy/Identity-Authentication-API.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/apiproxy/policies/HPX_AssignIdentifierResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/apiproxy/policies/HPX_AssignIdentifierResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/apiproxy/policies/HPX_Option.AssignResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/apiproxy/policies/HPX_Option.AssignResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/apiproxy/policies/HPX_RaiseFault.BadRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/apiproxy/policies/HPX_RaiseFault.BadRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/config.json -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-authentication-spi/tests/sample-test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-authentication-spi/tests/sample-test.jmx -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/Identity-Consent-App.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/Identity-Consent-App.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AddVariablesToTargetRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AddVariablesToTargetRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignIdentifyUserRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignIdentifyUserRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignInvalidMSISDNError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignInvalidMSISDNError.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRegistrationFlag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRegistrationFlag.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToCreateUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToCreateUser.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToResetPassword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToResetPassword.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToSetPassword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignRequestToSetPassword.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignResetFlag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignResetFlag.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignSendSMSAPIRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignSendSMSAPIRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserAlreadyExistsError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserAlreadyExistsError.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserAppParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserAppParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserDoesntExistError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignUserDoesntExistError.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignValidateUserRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignValidateUserRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignlogoutRedircetUri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_AssignlogoutRedircetUri.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_CORS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_CORS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_CORSPreflight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_CORSPreflight.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_CheckPinEntryTries_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_CheckPinEntryTries_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_CheckUserExists.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_CheckUserExists.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_CreateUser.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_CreateUser.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractIdentifyUserResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractIdentifyUserResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractResetPasswordUserDetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractResetPasswordUserDetails.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionId.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionIdFromURL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionIdFromURL.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionVariables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractSessionVariables.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserCredentails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserCredentails.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserDetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserDetails.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserIdFromResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractUserIdFromResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractValidateUserResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ExtractValidateUserResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateAuthCode.AssignRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateAuthCode.AssignRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateAuthCode.Callout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateAuthCode.Callout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateCookieUUID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateCookieUUID.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateUUID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GenerateUUID.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GetMsisdnFromHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GetMsisdnFromHeader.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GetMsisdnFromRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GetMsisdnFromRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_GetUserApps.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_GetUserApps.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_InvalidateAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_InvalidateAccessToken.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_InvalidateSession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_InvalidateSession.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ModifyReqToRegisterUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ModifyReqToRegisterUser.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_OauthAOC.redirectToRedirectFlow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_OauthAOC.redirectToRedirectFlow.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_PageInterceptorJS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_PageInterceptorJS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_RaiseFlagForUserSelfServiceFlow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_RaiseFlagForUserSelfServiceFlow.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ReadSessionCookie_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ReadSessionCookie_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectErrorInAuthorize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectErrorInAuthorize.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectErrorToCallbackURI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectErrorToCallbackURI.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectToIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_RedirectToIndex.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ResetPassword.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ResetPassword.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_RetrieveCodeFromURL_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_RetrieveCodeFromURL_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SendCookieInResposne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SendCookieInResposne.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SendSMS.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SendSMS.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ServiceCallout.IdentifyUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ServiceCallout.IdentifyUser.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ServiceCallout.ValidateUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ServiceCallout.ValidateUser.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_Session.GetFromCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_Session.GetFromCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_Session.SetInCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_Session.SetInCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetFlowErrorForInvalidCode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetFlowErrorForInvalidCode.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetFlowErrorFromQueryParam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetFlowErrorFromQueryParam.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetPassword.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetPassword.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetSessionError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetSessionError.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetUserVariableInSession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetUserVariableInSession.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetUserVariableJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetUserVariableJson.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_SetVariablesInSession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_SetVariablesInSession.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_UserJSON.GetFromCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_UserJSON.GetFromCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_ValidatePin.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_ValidatePin.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_extractUserIdFromUserJSON.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_extractUserIdFromUserJSON.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_generateAuthCode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_generateAuthCode.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/policies/HPX_redirectToConsent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/policies/HPX_redirectToConsent.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_CheckPinEntryTries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_CheckPinEntryTries.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_CreateSessionJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_CreateSessionJson.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GenerateIdForCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GenerateIdForCookie.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GenerateUUID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GenerateUUID.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GetSessionJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_GetSessionJson.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_PageInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_PageInterceptor.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_readCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_readCookie.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_retrieveCodeFromURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/jsc/HPX_retrieveCodeFromURL.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/app.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "authTypes":["social","email"] 3 | } -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/package.json -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/images/Thumbs.db -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/images/logo.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/js/app.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/js/bootstrap.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/stylesheets/style.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/config.rb -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/css/main.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/fonts/CRONMI__.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/fonts/CRONMI__.ttf -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/fonts/CRONOSMM.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/fonts/CRONOSMM.TTF -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Colombia.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/El-Salvador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/El-Salvador.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Switch.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/Thumbs.db -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/close-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/close-icon.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/error-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/error-close.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/error-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/error-info.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/flags/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/flags/Chad.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/flags/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/flags/Thumbs.db -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/icon1.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/icons/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/icons/Thumbs.db -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/logo.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/logo_old.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/msn.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/twitter.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/images/yahoo.png -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/bootstrap.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/flow1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/flow1.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/jquery.min.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/revoke_consent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/revoke_consent.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/js/validations.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/locales/en.json -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/locales/es.json -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/navbar-fixed-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/navbar-fixed-top.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/common.scss -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/header.scss -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/main.scss -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/sass/media-queries.scss -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/common.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/header.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/public/ui/stylesheets/main.css -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/routes/index.js -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/consent.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/consent.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/errorflow.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/errorflow.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/index.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/layout.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/msisdn.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/msisdn.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/myapps.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/myapps.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/myprofile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/myprofile.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/pin.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/pin.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/profile_edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/profile_edit.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/recovery.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/recovery.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/register.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/resources/node/views/socialRegister.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/resources/node/views/socialRegister.ejs -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/config.json -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/config.orig -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-consent-app/tests/sample-test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consent-app/tests/sample-test.jmx -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/identity-consent-management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/identity-consent-management.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_AccessTokenValidation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_AccessTokenValidation.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ConstructErrorResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ConstructErrorResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_CreateResposneContent_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_CreateResposneContent_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_GetSSOTokenFromRequest_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_GetSSOTokenFromRequest_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ModifyPUTRequestToAddParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ModifyPUTRequestToAddParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ModifyRequestToAddParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_ModifyRequestToAddParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_Option.AssignResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_Option.AssignResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault.ApplicationKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault.ApplicationKey.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault_BadRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault_BadRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault_Unauthorized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_RaiseFault_Unauthorized.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_SetTokenLifeInRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_SetTokenLifeInRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_VerifyClientId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_VerifyClientId.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_authenticationFailed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_authenticationFailed.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_authorizationFailed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_authorizationFailed.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_challengeResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_challengeResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_setGrantType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_setGrantType.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_validateBasicAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/policies/HPX_validateBasicAuth.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/jsc/HPX_createResposneContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/jsc/HPX_createResposneContent.js -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/jsc/HPX_getSSOTokenFromRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/jsc/HPX_getSSOTokenFromRequest.js -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/node/app.js -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/node/package.json -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/node/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/node/routes/index.js -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/resources/node/routes/usergrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/resources/node/routes/usergrid.js -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/config.json -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/config.orig -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-consentmgmt-api/tests/sample-test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-consentmgmt-api/tests/sample-test.jmx -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/identity-demo-app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/identity-demo-app.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AddAuthorizationReqVarInReq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AddAuthorizationReqVarInReq.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AddEncounterDetailsToRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AddEncounterDetailsToRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AddPatientDetailsToRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AddPatientDetailsToRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AddUserDetailsToRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AddUserDetailsToRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignGetAccessTokenRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignGetAccessTokenRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignGetUserDetailsRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignGetUserDetailsRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadEncounterRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadEncounterRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadPatientEncounterRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadPatientEncounterRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadPatientRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_AssignReadPatientRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractAccesTokenFromQueryParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractAccesTokenFromQueryParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractAccessTokenFromResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractAccessTokenFromResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractEncounterIdFromQueryParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractEncounterIdFromQueryParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractPatientDetailsFromResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractPatientDetailsFromResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractUserDetailsFromResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ExtractUserDetailsFromResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_GetAccessToken_ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_GetAccessToken_ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_GetUserDetails_ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_GetUserDetails_ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_GetVariablesFromSession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_GetVariablesFromSession.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ReadEncounterById_ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ReadEncounterById_ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_ReadPatient_Service-Callout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_ReadPatient_Service-Callout.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_RedirectToIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_RedirectToIndex.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/policies/HPX_SetVariablesToSession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/policies/HPX_SetVariablesToSession.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/app.js -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/node_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/node_modules.zip -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/package.json -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/Thumbs.db -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/error.jpg -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login.bck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login.bck.png -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login.png -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login1.png -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/login_old.png -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/logo.jpg -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/options.png -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/spot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/spot.jpg -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/images/spot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/images/spot_1.jpg -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/clientapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/clientapp.css -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/clientapp.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/clientapp.min.css -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/custom.css -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/public/stylesheets/style.css -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/routes/index.js -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/views/encounter.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/views/encounter.ejs -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/views/encounters.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/views/encounters.ejs -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/views/error.ejs -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/views/index.ejs -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/resources/node/views/success.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/resources/node/views/success.ejs -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/config.json -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/config.orig -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-demo-app/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-demo-app/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/oauthv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/oauthv2.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccessToken.ModifyReponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccessToken.ModifyReponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccessTokenResponseCC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccessTokenResponseCC.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccesstokenValidation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AccesstokenValidation.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowPatientReadScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowPatientReadScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowPatientWriteScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowPatientWriteScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserAllScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserAllScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserReadScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserReadScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserWriteScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AllowUserWriteScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignIdentityMessageResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignIdentityMessageResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignIssuer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignIssuer.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignReplayAttackError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignReplayAttackError.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignRequestVaribales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignRequestVaribales.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignStoreConsentRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignStoreConsentRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignUserId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_AssignUserId.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CORS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CORS.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CORSPreflight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CORSPreflight.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CheckNonceReplayAttack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CheckNonceReplayAttack.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ConvertToJSON.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ConvertToJSON.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CreateScopeArray_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CreateScopeArray_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CustomizeUserProfile_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_CustomizeUserProfile_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractAccessTokenResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractAccessTokenResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractAuthReqParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractAuthReqParams.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractSessionId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractSessionId.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractUserProfileResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractUserProfileResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractUserProfileResponse.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ExtractUserProfileResponse.xml.bak -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GenerateAccessToken.Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GenerateAccessToken.Response.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GenerateUUID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GenerateUUID.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetApiProduct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetApiProduct.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetAuthCodeAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetAuthCodeAttributes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetConsentStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetConsentStatus.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetScopes.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetUserProfileFromAppServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_GetUserProfileFromAppServices.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_JwtTokenSigning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_JwtTokenSigning.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_RaiseFault.ApplicationKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_RaiseFault.ApplicationKey.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_RaiseFault.InvalidRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_RaiseFault.InvalidRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ReturnGenericFaultMessage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ReturnGenericFaultMessage.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SaveNonceInCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SaveNonceInCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SendCookieInResposne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SendCookieInResposne.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_Session.GetFromCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_Session.GetFromCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_Session.SetInCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_Session.SetInCache.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SetSessionPayload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_SetSessionPayload.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_StoreConsent.ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_StoreConsent.ServiceCallout.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_TokenErrorResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_TokenErrorResponse.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ValidateRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ValidateRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ValidateScopeValues_JS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_ValidateScopeValues_JS.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAccessToken.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAccessToken.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAccessToken.xml.bak -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAuthCode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAuthCode.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAuthCode.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateAuthCode.xml.bak -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateRefreshToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_generateRefreshToken.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_handleBadRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_handleBadRequest.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_redirectToConsent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_redirectToConsent.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_validateApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/policies/HPX_validateApiKey.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/java/HPX_jsontoken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/java/HPX_jsontoken.zip -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_CreateScopeArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_CreateScopeArray.js -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ExtractVariablesFromSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ExtractVariablesFromSession.js -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_GenerateUUID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_GenerateUUID.js -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ValidateRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ValidateRequest.js -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ValidateScope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/resources/jsc/HPX_ValidateScope.js -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/apiproxy/targets/CodeGenrateFlow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/apiproxy/targets/CodeGenrateFlow.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/config.json -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/config.orig -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-oauthv2-api/tests/sample-test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-oauthv2-api/tests/sample-test.jmx -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/identity-sms-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/identity-sms-token.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_generate-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_generate-token.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-identifier-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-identifier-token.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-identifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-identifier.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-token-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_get-token-cache.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_modify-token-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_modify-token-cache.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-create-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-create-response.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-failure-token-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-failure-token-response.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-sms-payload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-sms-payload.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-success-token-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-success-token-response.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-token-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_set-token-cache.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/policies/HPX_verify-api-key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/policies/HPX_verify-api-key.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/resources/jsc/HPX_generate-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/resources/jsc/HPX_generate-token.js -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/resources/jsc/HPX_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/resources/jsc/HPX_token.js -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/config.json -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-sms-token-api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-sms-token-api/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/identity-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/identity-users.xml -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/Route.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/index.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/request.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/response.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/Router/utils.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/package.json -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/server.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/resources/node/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/resources/node/user.js -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/config.json -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/config.orig -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/pom.xml -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/readme.txt -------------------------------------------------------------------------------- /src/gateway/identity-usermgmt-api/tests/sample-test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/identity-usermgmt-api/tests/sample-test.jmx -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/oauth-b2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/oauth-b2b.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/policies/HPX_Fault_InvalidRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/policies/HPX_Fault_InvalidRequest.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/policies/HPX_Fault_UnsupportedOperation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/policies/HPX_Fault_UnsupportedOperation.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/policies/HPX_GenerateAccessToken.Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/policies/HPX_GenerateAccessToken.Response.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/policies/HPX_GenerateAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/policies/HPX_GenerateAccessToken.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/policies/HPX_RaiseFault_Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/policies/HPX_RaiseFault_Generic.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/pom.xml -------------------------------------------------------------------------------- /src/gateway/oauth-b2b/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/gateway/oauth-b2b/setup.sh -------------------------------------------------------------------------------- /src/java/jwt/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/.DS_Store -------------------------------------------------------------------------------- /src/java/jwt/include/commons-codec-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/commons-codec-1.8.jar -------------------------------------------------------------------------------- /src/java/jwt/include/gson-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/gson-2.2.2.jar -------------------------------------------------------------------------------- /src/java/jwt/include/joda-time-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/joda-time-2.0.jar -------------------------------------------------------------------------------- /src/java/jwt/include/jsontoken-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/jsontoken-1.0.jar -------------------------------------------------------------------------------- /src/java/jwt/include/jwtTokenSigning.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/include/jwtTokenSigning.jar -------------------------------------------------------------------------------- /src/java/jwt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/pom.xml -------------------------------------------------------------------------------- /src/java/jwt/src/main/java/com/grass/identity/JwtSign/JWT_Creator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/src/main/java/com/grass/identity/JwtSign/JWT_Creator.java -------------------------------------------------------------------------------- /src/java/jwt/src/main/java/com/grass/identity/JwtSign/JWT_Handler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/jwt/src/main/java/com/grass/identity/JwtSign/JWT_Handler.java -------------------------------------------------------------------------------- /src/java/lib/expressions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/lib/expressions-1.0.0.jar -------------------------------------------------------------------------------- /src/java/lib/message-flow-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/src/java/lib/message-flow-1.0.0.jar -------------------------------------------------------------------------------- /tests/postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/tests/postman/README.md -------------------------------------------------------------------------------- /tests/postman/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/tests/postman/env.json -------------------------------------------------------------------------------- /tests/postman/fhir-apis-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/flame/HEAD/tests/postman/fhir-apis-collection.json --------------------------------------------------------------------------------