Class EditIdpClientSettingsJson
- java.lang.Object
-
- com.blackberry.workspaces.sdk.api.json.BaseJson
-
- com.blackberry.workspaces.sdk.api.json.EditIdpClientSettingsJson
-
- All Implemented Interfaces:
Serializable
public class EditIdpClientSettingsJson extends BaseJson
Used when editing IDP settings for an organization- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EditIdpClientSettingsJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SimpleNaturalIntegerJson
getAccessTokenTTL()
Boolean
getAutoRenewRefreshToken()
String
getClientId()
SimpleNaturalIntegerJson
getRefreshTokenTTL()
void
setAccessTokenTTL(SimpleNaturalIntegerJson accessTokenTTL)
void
setAutoRenewRefreshToken(Boolean autoRenewRefreshToken)
void
setClientId(String clientId)
void
setRefreshTokenTTL(SimpleNaturalIntegerJson refreshTokenTTL)
-
Methods inherited from class com.blackberry.workspaces.sdk.api.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getClientId
public String getClientId()
-
setClientId
public void setClientId(String clientId)
-
getRefreshTokenTTL
public SimpleNaturalIntegerJson getRefreshTokenTTL()
-
setRefreshTokenTTL
public void setRefreshTokenTTL(SimpleNaturalIntegerJson refreshTokenTTL)
-
getAutoRenewRefreshToken
public Boolean getAutoRenewRefreshToken()
-
setAutoRenewRefreshToken
public void setAutoRenewRefreshToken(Boolean autoRenewRefreshToken)
-
getAccessTokenTTL
public SimpleNaturalIntegerJson getAccessTokenTTL()
-
setAccessTokenTTL
public void setAccessTokenTTL(SimpleNaturalIntegerJson accessTokenTTL)
-
-