|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface KernelConfigurator
A configurator.
The configurator is a utility class used by the controller to create and configure beans.
| Method Summary | |
|---|---|
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(BeanMetaData metaData)
Get the BeanInfo for some metadata |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(Class<?> clazz)
Get the BeanInfo |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(Class<?> clazz,
org.jboss.beans.info.spi.BeanAccessMode mode)
Get the BeanInfo |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(String className,
ClassLoader cl)
Get the BeanInfo |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(String className,
ClassLoader cl,
org.jboss.beans.info.spi.BeanAccessMode mode)
Get the BeanInfo |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(org.jboss.reflect.spi.TypeInfo type)
Get the BeanInfo |
org.jboss.beans.info.spi.BeanInfo |
getBeanInfo(org.jboss.reflect.spi.TypeInfo type,
org.jboss.beans.info.spi.BeanAccessMode mode)
Get the BeanInfo |
org.jboss.reflect.spi.ClassInfo |
getClassInfo(Class<?> clazz)
Get the class info for a class |
org.jboss.reflect.spi.ClassInfo |
getClassInfo(String className,
ClassLoader cl)
Get the class info for a class |
org.jboss.joinpoint.spi.Joinpoint |
getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info)
Get a constructor join point |
org.jboss.joinpoint.spi.Joinpoint |
getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ConstructorMetaData metaData,
BeanMetaData beanMetaData)
Get a constructor join point |
org.jboss.joinpoint.spi.Joinpoint |
getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ConstructorMetaData metaData,
BeanMetaData beanMetaData,
Object object)
Get a constructor join point |
org.jboss.joinpoint.spi.Joinpoint |
getConstructorJoinPoint(BeanMetaData metaData)
Get a constructor join point |
org.jboss.joinpoint.spi.MethodJoinpoint |
getMethodJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ClassLoader cl,
String name,
List<ParameterMetaData> parameters,
boolean isStatic,
boolean isPublic)
Get a method joinpoint |
org.jboss.reflect.spi.TypeInfo |
getTypeInfo(Class<?> clazz)
Get the type info for a class |
org.jboss.reflect.spi.TypeInfo |
getTypeInfo(String className,
ClassLoader cl)
Get the type info for a class |
| Methods inherited from interface org.jboss.kernel.spi.KernelObject |
|---|
getKernel, setKernel |
| Methods inherited from interface org.jboss.kernel.spi.event.KernelEventEmitter |
|---|
fireKernelEvent, registerListener, unregisterListener |
| Method Detail |
|---|
org.jboss.beans.info.spi.BeanInfo getBeanInfo(String className,
ClassLoader cl)
throws Throwable
className - the class namecl - the classloader
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(Class<?> clazz)
throws Throwable
clazz - the class
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(org.jboss.reflect.spi.TypeInfo type)
throws Throwable
type - the type info
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(String className,
ClassLoader cl,
org.jboss.beans.info.spi.BeanAccessMode mode)
throws Throwable
className - the class namecl - the classloadermode - the access mode
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(Class<?> clazz,
org.jboss.beans.info.spi.BeanAccessMode mode)
throws Throwable
clazz - the classmode - the access mode
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(org.jboss.reflect.spi.TypeInfo type,
org.jboss.beans.info.spi.BeanAccessMode mode)
throws Throwable
type - the type infomode - the access mode
Throwable - for any error
org.jboss.beans.info.spi.BeanInfo getBeanInfo(BeanMetaData metaData)
throws Throwable
metaData - the metadata
Throwable - for any error
org.jboss.reflect.spi.TypeInfo getTypeInfo(String className,
ClassLoader cl)
throws Throwable
className - the class namecl - the classloader
Throwable - for any error
org.jboss.reflect.spi.TypeInfo getTypeInfo(Class<?> clazz)
throws Throwable
clazz - the class
Throwable - for any error
org.jboss.reflect.spi.ClassInfo getClassInfo(String className,
ClassLoader cl)
throws Throwable
className - the class namecl - the classloader
Throwable - for any error
org.jboss.reflect.spi.ClassInfo getClassInfo(Class<?> clazz)
throws Throwable
clazz - the class
Throwable - for any error
org.jboss.joinpoint.spi.Joinpoint getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info)
throws Throwable
info - the bean info
Throwable - for any error
org.jboss.joinpoint.spi.Joinpoint getConstructorJoinPoint(BeanMetaData metaData)
throws Throwable
metaData - the bean metadata
Throwable - for any error
org.jboss.joinpoint.spi.Joinpoint getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ConstructorMetaData metaData,
BeanMetaData beanMetaData)
throws Throwable
info - the bean infometaData - the constructor metadatabeanMetaData - the bean metadata
Throwable - for any error
org.jboss.joinpoint.spi.Joinpoint getConstructorJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ConstructorMetaData metaData,
BeanMetaData beanMetaData,
Object object)
throws Throwable
info - the bean infometaData - the constructor metadatabeanMetaData - the bean metadataobject - an opaque object
Throwable - for any error
org.jboss.joinpoint.spi.MethodJoinpoint getMethodJoinPoint(org.jboss.beans.info.spi.BeanInfo info,
ClassLoader cl,
String name,
List<ParameterMetaData> parameters,
boolean isStatic,
boolean isPublic)
throws Throwable
info - the bean infocl - the classloadername - the method nameparameters - the parameter metadataisStatic - whether the method is staticisPublic - whether the method is public
Throwable - for any error
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||