imiger-fork/sources/WebContent/js/constants.js @ bf8bbb48
1 | 1e2b2c27 | Tomáš Šimandl | /**
|
---|---|---|---|
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 | }
|