Class SecretLocksPager
- java.lang.Object
-
- com.ibm.cloud.secrets_manager_sdk.secrets_manager.v2.model.SecretLocksPager
-
public class SecretLocksPager extends Object
SecretLocksPager can be used to simplify the use of the "listSecretLocks" method.
-
-
Constructor Summary
Constructors Constructor Description SecretLocksPager(SecretsManager client, ListSecretLocksOptions options)Constructs a new SecretLocksPager instance with the specified client and options model instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SecretLock>getAll()Returns all results by invoking getNext() repeatedly until all pages of results have been retrieved.List<SecretLock>getNext()Returns the next page of results.booleanhasNext()Returns true if there are more results to be retrieved.
-
-
-
Constructor Detail
-
SecretLocksPager
public SecretLocksPager(SecretsManager client, ListSecretLocksOptions options)
Constructs a new SecretLocksPager instance with the specified client and options model instance.- Parameters:
client- the SecretsManager instance to be used to invoke the "listSecretLocks" methodoptions- the ListSecretLocksOptions instance to be used to invoke the "listSecretLocks" method
-
-
Method Detail
-
hasNext
public boolean hasNext()
Returns true if there are more results to be retrieved.- Returns:
- boolean
-
getNext
public List<SecretLock> getNext()
Returns the next page of results.- Returns:
- a List<SecretLock> that contains the next page of results
-
getAll
public List<SecretLock> getAll()
Returns all results by invoking getNext() repeatedly until all pages of results have been retrieved.- Returns:
- a List<SecretLock> containing all results returned by the "listSecretLocks" method
-
-