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

org.onetwo.boot.plugin.mvc.PluginThreadContext Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.boot.plugin.mvc;

import org.onetwo.boot.plugin.core.WebPlugin;
import org.springframework.web.method.HandlerMethod;

public class PluginThreadContext {
	
	private final WebPlugin plugin;
	private final HandlerMethod handler;
	
	public PluginThreadContext(WebPlugin plugin, HandlerMethod handler) {
		super();
		this.plugin = plugin;
		this.handler = handler;
	}
	public WebPlugin getPlugin() {
		return plugin;
	}
	public HandlerMethod getHandler() {
		return handler;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy