
com.v5analytics.webster.resultWriters.DefaultResultWriterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webster Show documentation
Show all versions of webster Show documentation
Minimalist web framework, that has an express.js like API.
package com.v5analytics.webster.resultWriters;
import java.lang.reflect.Method;
public class DefaultResultWriterFactory implements ResultWriterFactory {
@Override
public ResultWriter createResultWriter(Method handleMethod) {
return new ResultWriterBase(handleMethod);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy