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

com.hina.sdk.event.BodyAndJson Maven / Gradle / Ivy

The newest version!
package com.hina.sdk.event;

public class BodyAndJson {
    private String body;
    private String json;

    public String getBody() {
        return body;
    }

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

    public String getJson() {
        return json;
    }

    public void setJson(String json) {
        this.json = json;
    }

    public static BodyAndJson getInstance(String body, String json) {
        BodyAndJson bodyAndJson = new BodyAndJson();
        bodyAndJson.setBody(body);
        bodyAndJson.setJson(json);
        return bodyAndJson;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy