blob: f7aceca742bbbfd34b1582a257923e75c730281b [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
export class Globals {
static CONTACT_TYPE = class ContactType {
static INTERNAL_PERSON = 'interne Person';
static EXTERNAL_PERSON = 'externe Person';
static COMPANY = 'Firma';
static CONTACT_PERSON = 'Kontaktperson';
static UNKNOWN = 'unbekannter Kontakttyp';
}
static CONTACT_TYPE_ID = class ContactTypeId {
static INTERNAL_PERSON = 'I_P';
static EXTERNAL_PERSON = 'E_P';
static COMPANY = 'COM';
static CONTACT_PERSON = 'C_P';
}
static PATH = class Path {
static PERSONS = 'persons';
static EXTERNAL = 'external';
static INTERNAL = 'internal';
static CONTACT = 'contact';
static COMPANY = 'company';
static NEW = 'new';
}
}