Package org.eclipse.jetty.util
Class AttributesMap
- java.lang.Object
-
- org.eclipse.jetty.util.AttributesMap
-
- All Implemented Interfaces:
Attributes,Dumpable
- Direct Known Subclasses:
ContextHandler.StaticContext,HttpConversation,ProxyConnectionFactory.ProxyEndPoint
@Deprecated(since="2021-05-27") public class AttributesMap extends Object implements Attributes, Dumpable
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.Attributes
Attributes.Wrapper
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Constructor Summary
Constructors Constructor Description AttributesMap()Deprecated.AttributesMap(AttributesMap attributes)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddAll(Attributes attributes)Deprecated.voidclearAttributes()Deprecated.Stringdump()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.Set<Map.Entry<String,Object>>getAttributeEntrySet()Deprecated.Enumeration<String>getAttributeNames()Deprecated.static Enumeration<String>getAttributeNamesCopy(Attributes attrs)Deprecated.Set<String>getAttributeNameSet()Deprecated.voidremoveAttribute(String name)Deprecated.voidsetAttribute(String name, Object attribute)Deprecated.intsize()Deprecated.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
AttributesMap
public AttributesMap()
Deprecated.
-
AttributesMap
public AttributesMap(AttributesMap attributes)
Deprecated.
-
-
Method Detail
-
removeAttribute
public void removeAttribute(String name)
Deprecated.- Specified by:
removeAttributein interfaceAttributes
-
setAttribute
public void setAttribute(String name, Object attribute)
Deprecated.- Specified by:
setAttributein 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
-
getAttributeNamesCopy
public static Enumeration<String> getAttributeNamesCopy(Attributes attrs)
Deprecated.
-
clearAttributes
public void clearAttributes()
Deprecated.- Specified by:
clearAttributesin interfaceAttributes
-
size
public int size()
Deprecated.
-
addAll
public void addAll(Attributes attributes)
Deprecated.
-
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- Parameters:
out- The appendable to dump toindent- The indent to apply after any new lines.- Throws:
IOException- if unable to write to Appendable
-
-