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

io.vertx.up.uca.rs.announce.ZERO Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.rs.announce;

import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.FileUpload;

import java.io.File;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

interface Pool {

    ConcurrentMap, Rigor> RIGORS = new ConcurrentHashMap, Rigor>() {
        {
            /* JsonObject & JsonArray */
            this.put(JsonObject.class, new JObjectRigor());
            this.put(JsonArray.class, new JArrayRigor());
            /* File & FileUpload for @Codex */
            this.put(File.class, new FileRigor());
            this.put(FileUpload.class, new FileRigor());
        }
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy