Package org.eclipse.jetty.util
Class Attributes.Wrapper
- java.lang.Object
-
- org.eclipse.jetty.util.Attributes.Wrapper
-
- All Implemented Interfaces:
Attributes
- Enclosing interface:
- Attributes
public abstract static class Attributes.Wrapper extends java.lang.Object implements Attributes
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.Attributes
Attributes.Wrapper
-
-
Field Summary
Fields Modifier and Type Field Description protected Attributes
_attributes
-
Constructor Summary
Constructors Constructor Description Wrapper(Attributes attributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearAttributes()
java.lang.Object
getAttribute(java.lang.String name)
java.util.Set<java.lang.String>
getAttributeNameSet()
Attributes
getAttributes()
void
removeAttribute(java.lang.String name)
void
setAttribute(java.lang.String name, java.lang.Object attribute)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.util.Attributes
getAttributeNames
-
-
-
-
Field Detail
-
_attributes
protected final Attributes _attributes
-
-
Constructor Detail
-
Wrapper
public Wrapper(Attributes attributes)
-
-
Method Detail
-
getAttributes
public Attributes getAttributes()
-
removeAttribute
public void removeAttribute(java.lang.String name)
- Specified by:
removeAttribute
in interfaceAttributes
-
setAttribute
public void setAttribute(java.lang.String name, java.lang.Object attribute)
- Specified by:
setAttribute
in interfaceAttributes
-
getAttribute
public java.lang.Object getAttribute(java.lang.String name)
- Specified by:
getAttribute
in interfaceAttributes
-
getAttributeNameSet
public java.util.Set<java.lang.String> getAttributeNameSet()
- Specified by:
getAttributeNameSet
in interfaceAttributes
-
clearAttributes
public void clearAttributes()
- Specified by:
clearAttributes
in interfaceAttributes
-
-