Package com.authlete.common.dto
Class ClientLockFlagUpdateRequest
- java.lang.Object
-
- com.authlete.common.dto.ClientLockFlagUpdateRequest
-
- All Implemented Interfaces:
Serializable
public class ClientLockFlagUpdateRequest extends Object implements Serializable
Request to Authlete's/api/client/lock_flag/update/{clientIdentifier}
API.The API is used to update the lock flag of a client application.
- Since:
- 3.10
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientLockFlagUpdateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isClientLocked()
Get the value to which this request updates the lock flag of a client application.ClientLockFlagUpdateRequest
setClientLocked(boolean clientLocked)
Set the value to which this request updates the lock flag of a client application.
-
-
-
Method Detail
-
isClientLocked
public boolean isClientLocked()
Get the value to which this request updates the lock flag of a client application.- Returns:
- The value to which this request updates the lock flag of a client application.
-
setClientLocked
public ClientLockFlagUpdateRequest setClientLocked(boolean clientLocked)
Set the value to which this request updates the lock flag of a client application.- Parameters:
clientLocked
- The value to which this request updates the lock flag of a client application.- Returns:
this
object.
-
-