Package org.eclipse.jetty.util
Class HostMap<TYPE>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<java.lang.String,TYPE>
-
- org.eclipse.jetty.util.HostMap<TYPE>
-
- Type Parameters:
TYPE
- the element type
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.util.Map<java.lang.String,TYPE>
@Deprecated(since="2021-05-27") public class HostMap<TYPE> extends java.util.HashMap<java.lang.String,TYPE>
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TYPE
get(java.lang.Object key)
Deprecated.java.lang.Object
getLazyMatches(java.lang.String host)
Deprecated.Retrieve a lazy list of map entries associated with specified hostname by taking into account the domain suffix matches.TYPE
put(java.lang.String host, TYPE object)
Deprecated.
-
-
-
Method Detail
-
put
public TYPE put(java.lang.String host, TYPE object) throws java.lang.IllegalArgumentException
Deprecated.
-
get
public TYPE get(java.lang.Object key)
Deprecated.
-
getLazyMatches
public java.lang.Object getLazyMatches(java.lang.String host)
Deprecated.Retrieve a lazy list of map entries associated with specified hostname by taking into account the domain suffix matches.- Parameters:
host
- hostname- Returns:
- lazy list of map entries
-
-