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

org.bidib.wizard.gateway.model.GatewayRequest Maven / Gradle / Ivy

There is a newer version: 2.0.25
Show newest version
package org.bidib.wizard.gateway.model;

import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

public class GatewayRequest {
    private String request;

    public GatewayRequest(String request) {
        this.setRequest(request);
    }

    public GatewayRequest() {

    }

    /**
     * @return the request
     */
    public String getRequest() {
        return request;
    }

    /**
     * @param request
     *            the request to set
     */
    public void setRequest(String request) {
        this.request = request;
    }

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy