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

com.firefly.core.support.BeanDefinition Maven / Gradle / Ivy

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

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;



/**
 * Bean information, the id, className or interface name is used for map's key.
 */
public interface BeanDefinition {

	String getId();
	
	void setId(String id);

	String getClassName();

	void setClassName(String className);

	String[] getInterfaceNames();

	void setInterfaceNames(String[] names);
	
	Constructor getConstructor();
	
	void setConstructor(Constructor constructor);
	
	void setInitMethod(Method method);
	
	Method getInitMethod();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy