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

org.bson.codecs.pojo.InstanceCreator 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;

/**
 * Provides access for setting data and the creation of a class instances.
 *
 * @param  the type of the class
 * @since 3.5
 */
public interface InstanceCreator {

    /**
     * Sets a value for the given PropertyModel
     *
     * @param value      the new value for the property
     * @param propertyModel the PropertyModel representing the property to set the value for.
     * @param         the PropertyModel's type
     */
     void set(S value, PropertyModel propertyModel);

    /**
     * Returns the new instance of the class.
     * 

Note: This will be called after all the values have been set.

* * @return the new class instance. */ T getInstance(); }