entities.fertilizacion.Profundidad.java Source code

Java tutorial

Introduction

Here is the source code for entities.fertilizacion.Profundidad.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package entities.fertilizacion;

import com.mongodb.Block;
import com.mongodb.client.FindIterable;
import com.mongodb.client.MongoCollection;
import db.MongoManager;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.bson.Document;
import org.bson.types.ObjectId;

/**
 *
 * @author VICTOR OQUENDO
 */
public class Profundidad implements Serializable {
    ObjectId id;
    String nombre;

    public Profundidad() {
        this.nombre = "";
    }

    public Profundidad(String nombre) {
        this.nombre = nombre;
    }

    public ObjectId getId() {
        return id;
    }

    public void setId(ObjectId id) {
        this.id = id;
    }

    public String getNombre() {
        return nombre;
    }

    public void setNombre(String nombre) {
        this.nombre = nombre;
    }

    public ObjectId save() {
        MongoManager mongo = MongoManager.getInstance();

        MongoCollection table = mongo.db.getCollection("profundidad");

        Document obj = new Document("nombre", this.nombre.toUpperCase());
        table.insertOne(obj);

        return (ObjectId) obj.get("_id");
    }

    public void update() {

        Profundidad before = getById(this.id);

        MongoManager mongo = MongoManager.getInstance();
        mongo.db.getCollection("profundidad").updateOne(new Document("_id", this.id),
                new Document("$set", new Document("nombre", this.nombre.toUpperCase())));

    }

    public static Profundidad getByName(String name) {
        Profundidad obj = new Profundidad();

        MongoManager mongo = MongoManager.getInstance();

        FindIterable<Document> iterable = mongo.db.getCollection("profundidad").find(new Document("nombre", name));

        iterable.forEach(new Block<Document>() {
            @Override
            public void apply(final Document document) {

                obj.id = (ObjectId) document.get("_id");
                obj.nombre = document.get("nombre").toString();
            }

        });

        return obj;
    }

    public static Profundidad getById(ObjectId id) {
        Profundidad obj = new Profundidad();

        MongoManager mongo = MongoManager.getInstance();

        FindIterable<Document> iterable = mongo.db.getCollection("profundidad").find(new Document("_id", id));

        iterable.forEach(new Block<Document>() {
            @Override
            public void apply(final Document document) {

                obj.id = (ObjectId) document.get("_id");
                obj.nombre = document.get("nombre").toString();
            }

        });

        return obj;
    }

    public static List<Profundidad> getAll() {
        List<Profundidad> res = new ArrayList<>();

        MongoManager mongo = MongoManager.getInstance();
        FindIterable<Document> iterable = mongo.db.getCollection("profundidad").find()
                .sort(new Document("_id", -1));
        iterable.forEach(new Block<Document>() {
            @Override
            public void apply(final Document document) {
                Profundidad obj = new Profundidad();
                obj.id = (ObjectId) document.get("_id");
                obj.nombre = document.get("nombre").toString();

                res.add(obj);
            }

        });

        return res;
    }
}