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

it.espr.mvc.route.parameter.PathVariable Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package it.espr.mvc.route.parameter;

public class PathVariable extends Parameter {

	public PathVariable(String name, Class cls) {
		super(TYPE.PATH_VARIABLE, name);
		this.cls = cls;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy