com.github.jonbonazza.puni.core.requests.HttpResponse.java Source code

Java tutorial

Introduction

Here is the source code for com.github.jonbonazza.puni.core.requests.HttpResponse.java

Source

/*
 * Copyright 2014 Jon Bonazza
 *
 * Jon Bonazza licenses this file to you 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.github.jonbonazza.puni.core.requests;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.handler.codec.http.DefaultFullHttpResponse;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.HttpVersion;
import io.netty.util.CharsetUtil;

/**
 * Wrapper class for conveniently creating http responses.
 */
public class HttpResponse extends DefaultFullHttpResponse {

    public HttpResponse(HttpResponseStatus status, ByteBuf content) {
        super(HttpVersion.HTTP_1_1, status, content);
    }

    public HttpResponse(HttpResponseStatus status, String content) {
        this(status, Unpooled.copiedBuffer(content, CharsetUtil.UTF_8));
    }

    public HttpResponse(String content) {
        this(HttpResponseStatus.OK, content);
    }
}