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

com.github.gkutiel.flip.web.res.Text Maven / Gradle / Ivy

package com.github.gkutiel.flip.web.res;

import com.github.gkutiel.flip.Response;

public class Text implements Response {

	@Override
	public byte[] getBytes(final Object obj, final String... args) {
		return obj.toString().getBytes();
	}

	@Override
	public String getMimeType(final String mime) {
		return mime.length() > 0 ? mime : "text/plain";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy