All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.client.model.ValidationAction Maven / Gradle / Ivy

Go to download

The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson

There is a newer version: 3.12.14
Show newest version
/*
 * Copyright 2015 MongoDB, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.mongodb.client.model;

import static com.mongodb.assertions.Assertions.notNull;
import static java.lang.String.format;

/**
 * Determines whether to error on invalid documents or just warn about the violations but allow invalid documents.
 *
 * @since 3.2
 * @mongodb.server.release 3.2
 * @mongodb.driver.manual reference/method/db.createCollection/ Create Collection
 */
public enum ValidationAction {

    /**
     * Documents must pass validation before the write occurs. Otherwise, the write operation fails.
     */
    ERROR("error"),

    /**
     * Documents do not have to pass validation. If the document fails validation, the write operation logs the validation failure to
     * the mongod logs.
     */
    WARN("warn");


    private final String value;
    ValidationAction(final String value) {
        this.value = value;
    }

    /**
     * @return the String representation of the validation level that the MongoDB server understands
     */
    public String getValue() {
        return value;
    }

    /**
     * Returns the validationAction from the string representation of a validation action.
     *
     * @param validationAction the string representation of the validation action.
     * @return the validation action
     */
    public static ValidationAction fromString(final String validationAction) {
        notNull("validationAction", validationAction);
        for (ValidationAction action : ValidationAction.values()) {
            if (validationAction.equalsIgnoreCase(action.value)) {
                return action;
            }
        }
        throw new IllegalArgumentException(format("'%s' is not a valid validationAction", validationAction));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy