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

com.firefly.mvc.web.support.ControllerAnnotatedBeanDefinition 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 java.util.List;

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

public class ControllerAnnotatedBeanDefinition extends AnnotatedBeanDefinition
		implements ControllerBeanDefinition {

	private List reqMethods;


	@Override
	public List getReqMethods() {
		return reqMethods;
	}
	
	@Override
	public void setReqMethods(List reqMethods) {
		this.reqMethods = reqMethods;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy