Kotlin conversion: RevocationStateType

This commit is contained in:
Paul Schaub 2023-08-04 17:05:33 +02:00
parent c8bfcc807b
commit 2fb7e6c3a3
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 4 additions and 5 deletions

View File

@ -1,11 +1,10 @@
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.algorithm;
public enum RevocationStateType {
package org.pgpainless.algorithm
enum class RevocationStateType {
/**
* Certificate is not revoked.
*/
@ -20,4 +19,4 @@ public enum RevocationStateType {
* Certificate is revoked with a hard revocation.
*/
hardRevoked
}
}