com.braffdev.server.core.http.environment.operator.SendStatusOperator.java Source code

Java tutorial

Introduction

Here is the source code for com.braffdev.server.core.http.environment.operator.SendStatusOperator.java

Source

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *                                                                         *
 *  Copyright (C) 2015, Markus Staudt <info@braffdev.com>                  *
 *                                                                         *
 *  This program is free software: you can redistribute it and/or modify   *
 *  it under the terms of the GNU General Public License as published by   *
 *  the Free Software Foundation, either version 3 of the License, or      *
 *  (at your option) any later version.                                    *
 *                                                                         *
 *  This program is distributed in the hope that it will be useful,        *
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 *  GNU General Public License for more details.                           *
 *                                                                         *
 *  You should have received a copy of the GNU General Public License      *
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
 *                                                                         *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

package com.braffdev.server.core.http.environment.operator;

import org.apache.http.HttpStatus;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;

import com.braffdev.server.core.http.environment.RequestEnvironment;
import com.braffdev.server.core.http.environment.status.StatusMessageBuilder;

/**
 *
 */
public class SendStatusOperator extends Operator {

    private StatusMessageBuilder statusMessageBuilder;

    /**
     * @param env
     */
    public SendStatusOperator(RequestEnvironment env) {
        super(env);

        this.statusMessageBuilder = new StatusMessageBuilder();
    }

    /**
     * @param code
     * @param args
     */
    public void sendStatus(int code, String... args) {
        if (code != HttpStatus.SC_NO_CONTENT) {
            String text = this.statusMessageBuilder.build(code, args);
            StringEntity entity = new StringEntity(text, ContentType.TEXT_HTML);
            this.response.setEntity(entity);
        }
    }

}