io.vertx.up.uca.rs.argument.EmptyFiller Maven / Gradle / Ivy
package io.vertx.up.uca.rs.argument;
import io.vertx.ext.web.RoutingContext;
import io.vertx.up.uca.rs.Filler;
/**
* 「Co」Critical Specific
*
* This `Filler` is placeholder for Body/Stream data in RESTful web request here
*
* In current Filler, it do nothing because the body extracting will go through
* `Resolver` for different MIME here.
*
* @author Lang
*/
public class EmptyFiller implements Filler {
@Override
public Object apply(final String name,
final Class> paramType,
final RoutingContext context) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy