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

com.wavemaker.runtime.data.model.FetchQuery Maven / Gradle / Ivy

There is a newer version: 11.9.2.ee
Show newest version
package com.wavemaker.runtime.data.model;

public class FetchQuery {
    private String query;

    public FetchQuery(String query) {
        this.query = query;
    }

    public String getQuery() {
        return this.query;
    }

    public void setQuery(String query) {
        this.query = query;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy