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: 5.0.0-dev6
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();

    void setDestroyedMethod(Method method);

    Method getDestroyedMethod();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy