com.vtence.molecule.routing.ViaClause Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
package com.vtence.molecule.routing;
import com.vtence.molecule.http.HttpMethod;
import com.vtence.molecule.lib.matchers.Matcher;
public interface ViaClause extends ToClause {
ToClause via(HttpMethod... methods);
ToClause via(Matcher super HttpMethod> method);
}