Interface GpgApiAdapter
-
public interface GpgApiAdapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PushCertificateInfocheckPushCertificate(String certStr, IdentifiedUser expectedUser)GpgKeyApigpgKey(AccountResource account, IdString idStr)booleanisEnabled()Map<String,GpgKeyInfo>listGpgKeys(AccountResource account)Map<String,GpgKeyInfo>putGpgKeys(AccountResource account, List<String> add, List<String> delete)
-
-
-
Method Detail
-
isEnabled
boolean isEnabled()
-
listGpgKeys
Map<String,GpgKeyInfo> listGpgKeys(AccountResource account) throws RestApiException, GpgException
- Throws:
RestApiExceptionGpgException
-
putGpgKeys
Map<String,GpgKeyInfo> putGpgKeys(AccountResource account, List<String> add, List<String> delete) throws RestApiException, GpgException
- Throws:
RestApiExceptionGpgException
-
gpgKey
GpgKeyApi gpgKey(AccountResource account, IdString idStr) throws RestApiException, GpgException
- Throws:
RestApiExceptionGpgException
-
checkPushCertificate
PushCertificateInfo checkPushCertificate(String certStr, IdentifiedUser expectedUser) throws GpgException
- Throws:
GpgException
-
-