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 java.lang.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.java.lang.Stringdump()Deprecated.voiddump(java.lang.Appendable out, java.lang.String indent)Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.java.lang.ObjectgetAttribute(java.lang.String name)Deprecated.java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>>getAttributeEntrySet()Deprecated.java.util.Enumeration<java.lang.String>getAttributeNames()Deprecated.static java.util.Enumeration<java.lang.String>getAttributeNamesCopy(Attributes attrs)Deprecated.java.util.Set<java.lang.String>getAttributeNameSet()Deprecated.voidremoveAttribute(java.lang.String name)Deprecated.voidsetAttribute(java.lang.String name, java.lang.Object attribute)Deprecated.intsize()Deprecated.java.lang.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
AttributesMap
public AttributesMap()
Deprecated.
-
AttributesMap
public AttributesMap(AttributesMap attributes)
Deprecated.
-
-
Method Detail
-
removeAttribute
public void removeAttribute(java.lang.String name)
Deprecated.- Specified by:
removeAttributein interfaceAttributes
-
setAttribute
public void setAttribute(java.lang.String name, java.lang.Object attribute)Deprecated.- Specified by:
setAttributein interfaceAttributes
-
getAttribute
public java.lang.Object getAttribute(java.lang.String name)
Deprecated.- Specified by:
getAttributein interfaceAttributes
-
getAttributeNames
public java.util.Enumeration<java.lang.String> getAttributeNames()
Deprecated.- Specified by:
getAttributeNamesin interfaceAttributes
-
getAttributeNameSet
public java.util.Set<java.lang.String> getAttributeNameSet()
Deprecated.- Specified by:
getAttributeNameSetin interfaceAttributes
-
getAttributeEntrySet
public java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>> getAttributeEntrySet()
Deprecated.
-
getAttributeNamesCopy
public static java.util.Enumeration<java.lang.String> getAttributeNamesCopy(Attributes attrs)
Deprecated.
-
clearAttributes
public void clearAttributes()
Deprecated.- Specified by:
clearAttributesin interfaceAttributes
-
size
public int size()
Deprecated.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
addAll
public void addAll(Attributes attributes)
Deprecated.
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOExceptionDeprecated.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.
-
-