public class CacheKey extends AbstractModel
Constructor and Description |
---|
CacheKey() |
CacheKey(CacheKey source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getFullUrlCache()
Get Specifies whether to enable full-path cache
`on`: Enable full-path cache (i.e., disable Ignore Query String)
`off`: Disable full-path cache (i.e., enable Ignore Query String)
Note: This field may return `null`, indicating that no valid value can be obtained.
|
String |
getIgnoreCase()
Get Specifies whether the cache key is case sensitive
Note: This field may return `null`, indicating that no valid value can be obtained.
|
QueryString |
getQueryString()
Get Request parameter contained in `CacheKey`
Note: This field may return `null`, indicating that no valid value can be obtained.
|
void |
setFullUrlCache(String FullUrlCache)
Set Specifies whether to enable full-path cache
`on`: Enable full-path cache (i.e., disable Ignore Query String)
`off`: Disable full-path cache (i.e., enable Ignore Query String)
Note: This field may return `null`, indicating that no valid value can be obtained.
|
void |
setIgnoreCase(String IgnoreCase)
Set Specifies whether the cache key is case sensitive
Note: This field may return `null`, indicating that no valid value can be obtained.
|
void |
setQueryString(QueryString QueryString)
Set Request parameter contained in `CacheKey`
Note: This field may return `null`, indicating that no valid value can be obtained.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public CacheKey()
public CacheKey(CacheKey source)
public String getFullUrlCache()
public void setFullUrlCache(String FullUrlCache)
FullUrlCache
- Specifies whether to enable full-path cache
`on`: Enable full-path cache (i.e., disable Ignore Query String)
`off`: Disable full-path cache (i.e., enable Ignore Query String)
Note: This field may return `null`, indicating that no valid value can be obtained.public String getIgnoreCase()
public void setIgnoreCase(String IgnoreCase)
IgnoreCase
- Specifies whether the cache key is case sensitive
Note: This field may return `null`, indicating that no valid value can be obtained.public QueryString getQueryString()
public void setQueryString(QueryString QueryString)
QueryString
- Request parameter contained in `CacheKey`
Note: This field may return `null`, indicating that no valid value can be obtained.Copyright © 2023. All rights reserved.