com.redhat.lightblue.mongo.metadata.MongoMetadataConstants Maven / Gradle / Ivy
/*
Copyright 2013 Red Hat, Inc. and/or its affiliates.
This file is part of lightblue.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package com.redhat.lightblue.mongo.metadata;
public final class MongoMetadataConstants {
public static final String ERR_DUPLICATE_METADATA = "mongo-metadata:DuplicateMetadata";
public static final String ERR_UNKNOWN_VERSION = "mongo-metadata:UnknownVersion";
public static final String ERR_DB_ERROR = "mongo-metadata:DatabaseError";
public static final String ERR_MISSING_ENTITY_INFO = "mongo-metadata:MissingEntityInfo";
public static final String ERR_DISABLED_DEFAULT_VERSION = "mongo-metadata:DisabledDefaultVersion";
public static final String ERR_INVALID_DATASTORE = "mongo-metadata:InvalidDatastore";
public static final String ERR_NEW_STATUS_IS_NULL = "mongo-metadata:NewStatusIsNull";
public static final String ERR_CANNOT_DELETE = "mongo-metadata:CannotDeleteEntity";
public static final String ERR_INVALID_ID = "mongo-metadata:Invalid_id_defn";
public static final String ERR_UPDATE_INVALIDATES_METADATA = "mongo-metadata:UpdateInvalidatesMetadata";
private MongoMetadataConstants() {
}
}