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

org.bson.codecs.pojo.Conventions Maven / Gradle / Ivy

Go to download

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

There is a newer version: 3.12.14
Show newest version
/*
 * Copyright 2008-present 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 org.bson.codecs.pojo;

import java.util.Collections;
import java.util.List;

import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;

/**
 * The default Conventions
 *
 * @since 3.5
 * @see Convention
 */
public final class Conventions {

    /**
     * The default class and property conventions
     *
     * 
    *
  • Sets the discriminator key if not set to {@code _t} and the discriminator value if not set to the * ClassModels simple type name.
  • *
  • Configures the PropertyModels. If the {@code idProperty} isn't set and there is a * property named {@code getId()}, {@code id} or {@code _id} it will be marked as the idProperty.
  • *
*/ public static final Convention CLASS_AND_PROPERTY_CONVENTION = new ConventionDefaultsImpl(); /** * The annotation convention. * *

Applies all the conventions related to the default {@link org.bson.codecs.pojo.annotations}.

*/ public static final Convention ANNOTATION_CONVENTION = new ConventionAnnotationImpl(); /** * A convention that enables private fields to be set using reflection. * *

This convention mimics how some other JSON libraries directly set a private field when there is no setter.

*

Note: This convention is not part of the {@code DEFAULT_CONVENTIONS} list and must explicitly be set.

* * @since 3.6 */ public static final Convention SET_PRIVATE_FIELDS_CONVENTION = new ConventionSetPrivateFieldImpl(); /** * A convention that uses getter methods as setters for collections and maps if there is no setter. * *

This convention mimics how JAXB mutate collections and maps.

*

Note: This convention is not part of the {@code DEFAULT_CONVENTIONS} list and must explicitly be set.

* * @since 3.6 */ public static final Convention USE_GETTERS_FOR_SETTERS = new ConventionUseGettersAsSettersImpl(); /** * The default conventions list */ public static final List DEFAULT_CONVENTIONS = unmodifiableList(asList(CLASS_AND_PROPERTY_CONVENTION, ANNOTATION_CONVENTION)); /** * An empty conventions list */ public static final List NO_CONVENTIONS = Collections.emptyList(); private Conventions() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy