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

com.britesnow.snow.web.HttpWriterOptions Maven / Gradle / Ivy

package com.britesnow.snow.web;

public class HttpWriterOptions {

    private String contentType;
    private String characterEncoding = "UTF-8";
    
    
    public String getContentType() {
        return contentType;
    }
    public HttpWriterOptions setContentType(String contentType) {
        this.contentType = contentType;
        return this;
    }
    
    public String getCharacterEncoding() {
        return characterEncoding;
    }
    public HttpWriterOptions setCharacterEncoding(String characterEncoding) {
        this.characterEncoding = characterEncoding;
        return this;
    }
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy