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

net.n2oapp.framework.config.metadata.pack.N2oQueriesPack Maven / Gradle / Ivy

There is a newer version: 7.28.2
Show newest version
package net.n2oapp.framework.config.metadata.pack;

import net.n2oapp.framework.api.pack.MetadataPack;
import net.n2oapp.framework.config.N2oApplicationBuilder;
import net.n2oapp.framework.config.io.query.QueryElementIOv4;
import net.n2oapp.framework.config.io.query.QueryElementIOv5;
import net.n2oapp.framework.config.metadata.compile.query.N2oQueryCompiler;

public class N2oQueriesPack implements MetadataPack {
    @Override
    public void build(N2oApplicationBuilder b) {
        b.ios(new QueryElementIOv4(), new QueryElementIOv5());
        b.compilers(new N2oQueryCompiler());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy