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

io.vertx.tp.crud.cv.Addr Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.tp.crud.cv;

/**
 * Address for Event Bus
 */
interface Prefix {
    /*
     * Distinguish from original definition or user defined event.
     */
    String _EVENT = "Ἀτλαντὶς νῆσος://μονάδα μέτρησης/";
}

public interface Addr {

    interface Get {

        String BY_ID = Prefix._EVENT + "X-GET/ID";

        String COLUMN_FULL = Prefix._EVENT + "X-COLUMN/FULL";

        String COLUMN_MY = Prefix._EVENT + "X-COLUMN/MY";
    }

    interface Delete {

        String BY_ID = Prefix._EVENT + "X-DELETE/ID";

        String BATCH = Prefix._EVENT + "X-DELETE/BATCH";
    }

    interface Post {

        String ADD = Prefix._EVENT + "X-ADD";

        String SEARCH = Prefix._EVENT + "X-SEARCH";

        String EXISTING = Prefix._EVENT + "X-EXISTING";

        String MISSING = Prefix._EVENT + "X-MISSING";
    }

    interface Put {

        String BY_ID = Prefix._EVENT + "X-PUT/ID";

        String BATCH = Prefix._EVENT + "X-PUT/BATCH";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy