Class InfoQueryParams
- java.lang.Object
-
- com.cheetahdigital.corekit.rest.params.BaseParams
-
- com.cheetahdigital.corekit.rest.params.BaseListQueryParams
-
- com.cheetahdigital.corekit.authentication.core.api.InfoQueryParams
-
- All Implemented Interfaces:
android.os.Parcelable
public class InfoQueryParams extends BaseListQueryParams
Class for setting the query parameters of Info API. AllNullable
parameters means you can remove the parameter by passing anull
value.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InfoQueryParams.Builder
Builder class forInfoQueryParams
-
Nested classes/interfaces inherited from class com.cheetahdigital.corekit.rest.params.BaseListQueryParams
BaseListQueryParams.BaseListQueryBuilder<P extends BaseListQueryParams,B extends BaseListQueryParams.BaseListQueryBuilder>
-
Nested classes/interfaces inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
BaseParams.BaseBuilder<T extends BaseParams,B extends BaseParams.BaseBuilder>
-
-
Field Summary
-
Fields inherited from class com.cheetahdigital.corekit.rest.params.BaseListQueryParams
CREATOR
-
Fields inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
mId, mQueryMap
-
-
Constructor Summary
Constructors Constructor Description InfoQueryParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClientId()
Get the current client idjava.lang.String
getClientSecret()
Get the current client secretvoid
setClientId(java.lang.String clientId)
Set the client id of the environmentvoid
setClientSecret(java.lang.String clientSecret)
Set the client secret of the environment-
Methods inherited from class com.cheetahdigital.corekit.rest.params.BaseListQueryParams
addCategories, addCategory, clearCategories, describeContents, getCategories, getItemsPerPage, getLayout, getPage, getSortBy, getSortOrder, removeCategory, setItemsPerPage, setLayout, setPage, setSortBy, setSortOrder, writeToParcel
-
Methods inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
addParam, getAccessToken, getId, getParam, getQueryMap, setAccessToken, setId
-
-
-
-
Method Detail
-
setClientId
public void setClientId(@Nullable java.lang.String clientId)
Set the client id of the environment- Parameters:
clientId
- client id of the environment
-
getClientId
@Nullable public java.lang.String getClientId()
Get the current client id- Returns:
- client id stored
-
setClientSecret
public void setClientSecret(@Nullable java.lang.String clientSecret)
Set the client secret of the environment- Parameters:
clientSecret
- client secret of the environment
-
getClientSecret
@Nullable public java.lang.String getClientSecret()
Get the current client secret- Returns:
- client secret stored
-
-