Package org.eclipse.jetty.util
Class DecoratedObjectFactory
- java.lang.Object
-
- org.eclipse.jetty.util.DecoratedObjectFactory
-
@Deprecated(since="2021-05-27") public class DecoratedObjectFactory extends Object implements Iterable<Decorator>
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.An ObjectFactory enhanced byDecoratorinstances.Consistent single location for all Decorator behavior, with equal behavior in a ServletContext and also for a stand alone client.
Used by ServletContextHandler, WebAppContext, WebSocketServerFactory, and WebSocketClient.
Can be found in the ServletContext Attributes at the
DecoratedObjectFactory.ATTRkey.
-
-
Constructor Summary
Constructors Constructor Description DecoratedObjectFactory()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddDecorator(Decorator decorator)Deprecated.voidclear()Deprecated.<T> TcreateInstance(Class<T> clazz)Deprecated.<T> Tdecorate(T obj)Deprecated.voiddestroy(Object obj)Deprecated.List<Decorator>getDecorators()Deprecated.Iterator<Decorator>iterator()Deprecated.booleanremoveDecorator(Decorator decorator)Deprecated.voidsetDecorators(List<? extends Decorator> decorators)Deprecated.StringtoString()Deprecated.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
ATTR
public static final String ATTR
Deprecated.ServletContext attribute for the active DecoratedObjectFactory
-
-
Method Detail
-
addDecorator
public void addDecorator(Decorator decorator)
Deprecated.
-
removeDecorator
public boolean removeDecorator(Decorator decorator)
Deprecated.
-
clear
public void clear()
Deprecated.
-
createInstance
public <T> T createInstance(Class<T> clazz) throws InstantiationException, IllegalAccessException, NoSuchMethodException, InvocationTargetException
Deprecated.
-
decorate
public <T> T decorate(T obj)
Deprecated.
-
destroy
public void destroy(Object obj)
Deprecated.
-
-