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

com.agapsys.rcf.JsonResponse Maven / Gradle / Ivy

There is a newer version: 0.1.0-20170604
Show newest version
/*
 * Copyright 2017 Agapsys Tecnologia Ltda-ME.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.agapsys.rcf;

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletResponse;

public class JsonResponse extends ActionResponse {

    // 
    // =========================================================================
    public static String toJson(Object obj) {
        return JsonRequest.DEFAULT_GSON.toJson(obj);
    }
    // =========================================================================
    // 

    public JsonResponse(ActionResponse wrappedResponse) {
        super(wrappedResponse);
    }

    /**
     * Sends an object in the response.
     *
     * @param object object to be serialized.
     * @throws IOException if an I/O error happened during the process.
     * @return this
     */
    public final JsonResponse sendObject(Object object) throws IOException {
        HttpServletResponse resp = getServletResponse();
        resp.setContentType(JsonRequest.JSON_CONTENT_TYPE);
        resp.setCharacterEncoding(JsonRequest.JSON_ENCODING);

        PrintWriter out = resp.getWriter();
        out.write(toJson(object));
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy