blob: dd2bdccae042fab8c73f02b38c737e015548c71a [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 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
*******************************************************************************
*/
package org.eclipse.openk.contactbasedata.constants;
public final class Constants {
public static final String PERSON_TYPE_UUID_NOT_EXISTING = "personType.uuid.not.existing";
public static final String ADDRESS_TYPE_UUID_NOT_EXISTING = "addressType.uuid.not.existing";
public static final String CONTACT_UUID_NOT_EXISTING = "contact.uuid.not.existing";
private Constants() {
// empty Constructor for the sake of SONAR
}
public static final String DB_VERSION_NOT_PRESENT = "DB-Version-not_present";
public static final String CONTACT_TYPE_INTERNAL_PERSON = "I_P";
public static final String CONTACT_TYPE_EXTERNAL_PERSON = "E_P";
public static final String CONTACT_TYPE_CONTACT_PERSON = "C_P";
public static final String CONTACT_TYPE_COMPANY = "COM";
}