imiger-fork/sources/WebContent/js/constants.js @ 28be3f78
1 |
/**
|
---|---|
2 |
* Class containing application constants.
|
3 |
* @constructor
|
4 |
*/
|
5 |
function Constants() { |
6 |
/** @prop {string} crceApiBase CRCE API base path. */
|
7 |
this.crceApiBase = 'http://localhost:8081/rest/v2'; |
8 |
/** @prop {string} notFoundVertexName Name of the vertex that groups all components that were not found while constructing graph. */
|
9 |
this.notFoundVertexName = 'NOT_FOUND'; |
10 |
}
|