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

info.bliki.api.Template Maven / Gradle / Ivy

The newest version!
package info.bliki.api;

/**
 * Manages template data from the Wikimedia API
 */
public class Template {
    private String ns;
    private String exists;
    private String body;

    public String getNs() {
        return ns;
    }

    public void setNs(String ns) {
        this.ns = ns;
    }

    public String getExists() {
        return exists;
    }

    public void setExists(String exists) {
        this.exists = exists;
    }

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy