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

public.js.common.dao.mapping.js Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
window.Mapping = {
    CREATE_ITEM: "/item",
    DELETE_ITEMS: "/item/id",
    DELETE_LABELS: "/label",
    GET_ITEMS: "/item",
    GET_KEY: "/key/*",
    GET_KEYS: "/key",
    GET_KEYS_FOR_LABELS: "/key/label",
    GET_LABEL: "/label/*",
    GET_LABELS: "/label",
    LOGOUT: "/logout",
    GET_OBJECT_FROM_STORE: "/stored-object/*",
    GET_RANDOM_ITEM: "/item/random",
    SAVE_TO_OBJECT_STORE: "/stored-object",
    UPDATE_ITEM: "/item/*",
    UPDATE_LABEL: "/label/*",

    concat: function(path, id){
        return path.replace("*", id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy