Projekt

Obecné

Profil

Stáhnout (374 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}
(2-2/11)