@Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams
HttpClient
.
These provide client specific defaults.
HttpClient
.
These can be used to set parameters that cannot be overridden
on a per-request basis.
null
. That is preferable over
an empty params collection, since it avoids searching the empty collection
when looking up parameters.Modifier and Type | Field and Description |
---|---|
protected org.apache.http.params.HttpParams |
applicationParams
Deprecated.
The application parameter collection, or
null . |
protected org.apache.http.params.HttpParams |
clientParams
Deprecated.
The client parameter collection, or
null . |
protected org.apache.http.params.HttpParams |
overrideParams
Deprecated.
The override parameter collection, or
null . |
protected org.apache.http.params.HttpParams |
requestParams
Deprecated.
The request parameter collection, or
null . |
Constructor and Description |
---|
ClientParamsStack(ClientParamsStack stack)
Deprecated.
Creates a copy of a parameter stack.
|
ClientParamsStack(ClientParamsStack stack,
org.apache.http.params.HttpParams aparams,
org.apache.http.params.HttpParams cparams,
org.apache.http.params.HttpParams rparams,
org.apache.http.params.HttpParams oparams)
Deprecated.
Creates a modified copy of a parameter stack.
|
ClientParamsStack(org.apache.http.params.HttpParams aparams,
org.apache.http.params.HttpParams cparams,
org.apache.http.params.HttpParams rparams,
org.apache.http.params.HttpParams oparams)
Deprecated.
Creates a new parameter stack from elements.
|
Modifier and Type | Method and Description |
---|---|
org.apache.http.params.HttpParams |
copy()
Deprecated.
Does not copy parameters.
|
org.apache.http.params.HttpParams |
getApplicationParams()
Deprecated.
Obtains the application parameters of this stack.
|
org.apache.http.params.HttpParams |
getClientParams()
Deprecated.
Obtains the client parameters of this stack.
|
org.apache.http.params.HttpParams |
getOverrideParams()
Deprecated.
Obtains the override parameters of this stack.
|
Object |
getParameter(String name)
Deprecated.
Obtains a parameter from this stack.
|
org.apache.http.params.HttpParams |
getRequestParams()
Deprecated.
Obtains the request parameters of this stack.
|
boolean |
removeParameter(String name)
Deprecated.
Does not remove a parameter.
|
org.apache.http.params.HttpParams |
setParameter(String name,
Object value)
Deprecated.
Does not set a parameter.
|
protected final org.apache.http.params.HttpParams applicationParams
null
.protected final org.apache.http.params.HttpParams clientParams
null
.protected final org.apache.http.params.HttpParams requestParams
null
.protected final org.apache.http.params.HttpParams overrideParams
null
.public ClientParamsStack(org.apache.http.params.HttpParams aparams, org.apache.http.params.HttpParams cparams, org.apache.http.params.HttpParams rparams, org.apache.http.params.HttpParams oparams)
aparams
- application parameters, or null
cparams
- client parameters, or null
rparams
- request parameters, or null
oparams
- override parameters, or null
public ClientParamsStack(ClientParamsStack stack)
stack
- the stack to copypublic ClientParamsStack(ClientParamsStack stack, org.apache.http.params.HttpParams aparams, org.apache.http.params.HttpParams cparams, org.apache.http.params.HttpParams rparams, org.apache.http.params.HttpParams oparams)
null
,
the corresponding element from the argument stack is used.
There is no copying of parameters.stack
- the stack to modifyaparams
- application parameters, or null
cparams
- client parameters, or null
rparams
- request parameters, or null
oparams
- override parameters, or null
public final org.apache.http.params.HttpParams getApplicationParams()
null
public final org.apache.http.params.HttpParams getClientParams()
null
public final org.apache.http.params.HttpParams getRequestParams()
null
public final org.apache.http.params.HttpParams getOverrideParams()
null
public Object getParameter(String name)
name
- the name of the parameter to obtainnull
if it is not set anywhere in this stackpublic org.apache.http.params.HttpParams setParameter(String name, Object value) throws UnsupportedOperationException
name
- ignoredvalue
- ignoredUnsupportedOperationException
- alwayspublic boolean removeParameter(String name)
name
- ignoredUnsupportedOperationException
- alwayspublic org.apache.http.params.HttpParams copy()
Derived classes may change this behavior.
this
parameter stackCopyright © 1999–2022 The Apache Software Foundation. All rights reserved.