org.apache.myfaces.config.annotation
Class NoAnnotationLifecyleProvider
java.lang.Object
org.apache.myfaces.config.annotation.NoAnnotationLifecyleProvider
- All Implemented Interfaces:
- LifecycleProvider
public class NoAnnotationLifecyleProvider
- extends java.lang.Object
- implements LifecycleProvider
Method Summary |
void |
destroyInstance(java.lang.Object o)
Take whatever steps are needed to shut down the object, including calling a preDestroy method. |
java.lang.Object |
newInstance(java.lang.String className)
Create an object of the class with the supplied name, inject dependencies as appropriate,
and call a postContruct method as appropriate. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NoAnnotationLifecyleProvider
public NoAnnotationLifecyleProvider()
destroyInstance
public void destroyInstance(java.lang.Object o)
throws java.lang.IllegalAccessException,
java.lang.reflect.InvocationTargetException
- Description copied from interface:
LifecycleProvider
- Take whatever steps are needed to shut down the object, including calling a preDestroy method.
- Specified by:
destroyInstance
in interface LifecycleProvider
- Parameters:
o
- object to shut down.
- Throws:
java.lang.IllegalAccessException
java.lang.reflect.InvocationTargetException
newInstance
public java.lang.Object newInstance(java.lang.String className)
throws java.lang.InstantiationException,
java.lang.IllegalAccessException,
java.lang.reflect.InvocationTargetException,
java.lang.ClassNotFoundException
- Description copied from interface:
LifecycleProvider
- Create an object of the class with the supplied name, inject dependencies as appropriate,
and call a postContruct method as appropriate.
- Specified by:
newInstance
in interface LifecycleProvider
- Parameters:
className
- name of the class of the desired object
- Returns:
- a fully constructed, dependency-injected, and initialized object.
- Throws:
java.lang.InstantiationException
java.lang.IllegalAccessException
java.lang.reflect.InvocationTargetException
java.lang.ClassNotFoundException
Copyright © 2008 The Apache Software Foundation. All Rights Reserved.