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

com.firefly.mvc.web.support.InterceptorBeanDefinition Maven / Gradle / Ivy

There is a newer version: 4.0.3.2
Show newest version
package com.firefly.mvc.web.support;

import java.lang.reflect.Method;

import com.firefly.core.support.annotation.AnnotationBeanDefinition;

public interface InterceptorBeanDefinition extends AnnotationBeanDefinition {
	Method getDisposeMethod();
	
	void setDisposeMethod(Method method);
	
	String getUriPattern();
	
	void setUriPattern(String uriPattern);
	
	int getOrder();
	
	void setOrder(int order);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy