UNPKG

apiconnect-config

Version:

Configuration module IBM API Connect Developer Toolkit

31 lines (28 loc) 1.07 kB
/********************************************************* {COPYRIGHT-TOP} *** * Licensed Materials - Property of IBM * 5725-Z22, 5725-Z63, 5725-U33, 5725-Z63 * * (C) Copyright IBM Corporation 2016, 2017 * * All Rights Reserved. * US Government Users Restricted Rights - Use, duplication or disclosure * restricted by GSA ADP Schedule Contract with IBM Corp. ********************************************************** {COPYRIGHT-END} **/ // Node module: apiconnect-config 'use strict'; /** * @constant {Store} PROJECT_STORE Use when storing configuration for a specific project. */ module.exports.PROJECT_STORE = '_projectConfig'; /** * @constant {Store} USER_STORE Use when storing configuration common to all projects. */ module.exports.USER_STORE = '_userConfig'; /** * @constant {Store} TOKEN_STORE Use when storing JWT tokens common to all projects. */ module.exports.TOKEN_STORE = '_tokenConfig'; /** * @constant Default concurrency used to throttle control the number of requests made against the backend */ module.exports.DEFAULT_CONCURRENCY = 5;