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

org.webpieces.router.impl.loader.ResolvedMethod Maven / Gradle / Ivy

package org.webpieces.router.impl.loader;

public class ResolvedMethod {

	private String methodStr;
	private String controllerStr;

	public ResolvedMethod(String controllerStr, String methodStr) {
		this.controllerStr = controllerStr;
		this.methodStr = methodStr;
	}

	public String getMethodStr() {
		return methodStr;
	}

	public String getControllerStr() {
		return controllerStr;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy