Package org.eclipse.jetty.util.component
Class AttributeContainerMap
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.util.component.ContainerLifeCycle
-
- org.eclipse.jetty.util.component.AttributeContainerMap
-
- All Implemented Interfaces:
Attributes,Container,Destroyable,Dumpable,Dumpable.DumpableContainer,LifeCycle
@Deprecated(since="2021-05-27") public class AttributeContainerMap extends ContainerLifeCycle implements Attributes
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.An Attributes implementation that holds it's values in an immutableContainerLifeCycle
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.Attributes
Attributes.Wrapper
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Container
Container.InheritedListener, Container.Listener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description AttributeContainerMap()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclearAttributes()Deprecated.voiddump(Appendable out, String indent)Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.ObjectgetAttribute(String name)Deprecated.Enumeration<String>getAttributeNames()Deprecated.Set<String>getAttributeNameSet()Deprecated.voidremoveAttribute(String name)Deprecated.voidsetAttribute(String name, Object attribute)Deprecated.StringtoString()Deprecated.-
Methods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, unmanage, updateBean, updateBean, updateBeans
-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpable
-
-
-
-
Method Detail
-
setAttribute
public void setAttribute(String name, Object attribute)
Deprecated.- Specified by:
setAttributein interfaceAttributes
-
removeAttribute
public void removeAttribute(String name)
Deprecated.- Specified by:
removeAttributein interfaceAttributes
-
getAttribute
public Object getAttribute(String name)
Deprecated.- Specified by:
getAttributein interfaceAttributes
-
getAttributeNames
public Enumeration<String> getAttributeNames()
Deprecated.- Specified by:
getAttributeNamesin interfaceAttributes
-
getAttributeNameSet
public Set<String> getAttributeNameSet()
Deprecated.- Specified by:
getAttributeNameSetin interfaceAttributes
-
clearAttributes
public void clearAttributes()
Deprecated.- Specified by:
clearAttributesin interfaceAttributes
-
dump
public void dump(Appendable out, String indent) throws IOException
Deprecated.Description copied from interface:DumpableDump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.- Specified by:
dumpin interfaceDumpable- Overrides:
dumpin classContainerLifeCycle- Parameters:
out- The appendable to dump toindent- The indent to apply after any new lines.- Throws:
IOException- if unable to write to Appendable
-
toString
public String toString()
Deprecated.- Overrides:
toStringin classAbstractLifeCycle
-
-