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

com.smartling.api.sdk.file.response.ApiV2ResponseWrapper Maven / Gradle / Ivy

There is a newer version: 4.0.25
Show newest version
package com.smartling.api.sdk.file.response;

import com.smartling.web.api.v2.ResponseData;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

public class ApiV2ResponseWrapper
{
    private Response response;

    /**
     * Retrieve the response.
     *
     * @return the response.
     */
    public Response getResponse()
    {
        return response;
    }

    @Override
    public String toString()
    {
        return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("response", getResponse()).toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy