Class B2ListKeysRequestReal
- java.lang.Object
-
- com.backblaze.b2.client.structures.B2ListKeysRequestReal
-
public class B2ListKeysRequestReal extends java.lang.Object
NOTE: B2ListKeysRequestReal has the attributes needed by the B2 API. That's why it's name ends with 'Real'. Code that calls B2StorageClient uses B2ListKeysRequest (with no 'Real' at the end) instead. The B2StorageClient creates a 'Real' request by adding the accountId to the non-real version before sending it to the webifier.
-
-
Constructor Summary
Constructors Constructor Description B2ListKeysRequestReal(java.lang.String accountId, java.lang.Integer maxKeyCount, java.lang.String startApplicationKeyId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getAccountId()
java.lang.Integer
getMaxKeyCount()
java.lang.String
getStartApplicationKeyId()
int
hashCode()
-
-
-
Method Detail
-
getAccountId
public java.lang.String getAccountId()
-
getMaxKeyCount
public java.lang.Integer getMaxKeyCount()
-
getStartApplicationKeyId
public java.lang.String getStartApplicationKeyId()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-