-
Methods in io.gitea.api that return types with arguments of type PublicKey
| Modifier and Type |
Method |
Description |
ApiResponse<PublicKey> |
AdminApi.adminCreatePublicKeyWithHttpInfo(java.lang.String username,
CreateKeyOption key) |
Add a public key on behalf of a user
|
ApiResponse<PublicKey> |
UserApi.userCurrentGetKeyWithHttpInfo(java.lang.Long id) |
Get a public key
|
java.util.List<PublicKey> |
UserApi.userCurrentListKeys(java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List the authenticated user's public keys
|
ApiResponse<java.util.List<PublicKey>> |
UserApi.userCurrentListKeysWithHttpInfo(java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List the authenticated user's public keys
|
ApiResponse<PublicKey> |
UserApi.userCurrentPostKeyWithHttpInfo(CreateKeyOption body) |
Create a public key
|
java.util.List<PublicKey> |
UserApi.userListKeys(java.lang.String username,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List the given user's public keys
|
ApiResponse<java.util.List<PublicKey>> |
UserApi.userListKeysWithHttpInfo(java.lang.String username,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List the given user's public keys
|
Method parameters in io.gitea.api with type arguments of type PublicKey
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
AdminApi.adminCreatePublicKeyAsync(java.lang.String username,
CreateKeyOption key,
ApiCallback<PublicKey> callback) |
Add a public key on behalf of a user (asynchronously)
|
com.squareup.okhttp.Call |
UserApi.userCurrentGetKeyAsync(java.lang.Long id,
ApiCallback<PublicKey> callback) |
Get a public key (asynchronously)
|
com.squareup.okhttp.Call |
UserApi.userCurrentListKeysAsync(java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<PublicKey>> callback) |
List the authenticated user's public keys (asynchronously)
|
com.squareup.okhttp.Call |
UserApi.userCurrentPostKeyAsync(CreateKeyOption body,
ApiCallback<PublicKey> callback) |
Create a public key (asynchronously)
|
com.squareup.okhttp.Call |
UserApi.userListKeysAsync(java.lang.String username,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<PublicKey>> callback) |
List the given user's public keys (asynchronously)
|
-