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

nbcp.myoql.db.mongo.component.MongoInsertClip.kt Maven / Gradle / Ivy

The newest version!
package nbcp.myoql.db.mongo


import nbcp.myoql.db.mongo.component.MongoBaseMetaCollection
import org.slf4j.LoggerFactory
import java.io.Serializable

/**
 * Created by udi on 17-4-17.
 */


/**
 * MongoInsert
 */
class MongoInsertClip>(var moerEntity: M) :
    MongoBaseInsertClip(moerEntity.tableName) {

    companion object {
        private var logger = LoggerFactory.getLogger(this::class.java.declaringClass)
    }

    fun add(entity: Serializable): MongoInsertClip {
        super.addEntity(entity)
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy