Interface SignJwtResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SignJwtResponse
,SignJwtResponse.Builder
public interface SignJwtResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKeyId()
The ID of the key used to sign the JWT.com.google.protobuf.ByteString
getKeyIdBytes()
The ID of the key used to sign the JWT.String
getSignedJwt()
The signed JWT.com.google.protobuf.ByteString
getSignedJwtBytes()
The signed JWT.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKeyId
String getKeyId()
The ID of the key used to sign the JWT.
string key_id = 1;
- Returns:
- The keyId.
-
getKeyIdBytes
com.google.protobuf.ByteString getKeyIdBytes()
The ID of the key used to sign the JWT.
string key_id = 1;
- Returns:
- The bytes for keyId.
-
getSignedJwt
String getSignedJwt()
The signed JWT.
string signed_jwt = 2;
- Returns:
- The signedJwt.
-
getSignedJwtBytes
com.google.protobuf.ByteString getSignedJwtBytes()
The signed JWT.
string signed_jwt = 2;
- Returns:
- The bytes for signedJwt.
-
-