public final class CookieSpecRegistry
extends java.lang.Object
Constructor and Description |
---|
CookieSpecRegistry() |
Modifier and Type | Method and Description |
---|---|
CookieSpec |
getCookieSpec(java.lang.String name)
Gets the
cookie specification with the given name. |
CookieSpec |
getCookieSpec(java.lang.String name,
HttpParams params)
Gets the
cookie specification with the given ID. |
java.util.List |
getSpecNames()
Obtains a list containing names of all registered
cookie
specs in their default order. |
void |
register(java.lang.String name,
CookieSpecFactory factory)
Registers a
CookieSpecFactory with the given identifier. |
void |
setItems(java.util.Map map)
Populates the internal collection of registered
cookie
specs with the content of the map passed as a parameter. |
void |
unregister(java.lang.String id)
Unregisters the
CookieSpecFactory with the given ID. |
public void register(java.lang.String name, CookieSpecFactory factory)
CookieSpecFactory
with the given identifier.
If a specification with the given name already exists it will be overridden.
This nameis the same one used to retrieve the CookieSpecFactory
from getCookieSpec(String)
.name
- the identifier for this specificationfactory
- the CookieSpecFactory
class to registergetCookieSpec(String)
public void unregister(java.lang.String id)
CookieSpecFactory
with the given ID.id
- the identifier of the cookie specification
to unregisterpublic CookieSpec getCookieSpec(java.lang.String name, HttpParams params) throws java.lang.IllegalStateException
cookie specification
with the given ID.name
- the cookie specification
identifierparams
- the HTTP parameters
for the cookie
specification.cookie specification
java.lang.IllegalStateException
- if a policy with the given name cannot be foundpublic CookieSpec getCookieSpec(java.lang.String name) throws java.lang.IllegalStateException
cookie specification
with the given name.name
- the cookie specification
identifiercookie specification
java.lang.IllegalStateException
- if a policy with the given name cannot be foundpublic java.util.List getSpecNames()
cookie
specs
in their default order.
Note that the DEFAULT policy (if present) is likely to be the same
as one of the other policies, but does not have to be.public void setItems(java.util.Map map)
cookie
specs
with the content of the map passed as a parameter.map
- cookie specs