org.bitbucket.gkutiel.in.my.mind.handler.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of in-my-mind Show documentation
Show all versions of in-my-mind Show documentation
An opinionated web framework on top of in-core
The newest version!
package org.bitbucket.gkutiel.in.my.mind.handler;
public abstract class Text extends Textual {
@Override protected final String getContentType() {
return "text/plain";
}
@Override protected abstract String getText();
}