Class PrivateKeyEndpoint
- java.lang.Object
-
- org.eclipse.microprofile.jwt.tck.config.jwe.PrivateKeyEndpoint
-
@RequestScoped @Path("/endp") public class PrivateKeyEndpoint extends Object
The common endpoint used by the various private key config tests
-
-
Constructor Summary
Constructors Constructor Description PrivateKeyEndpoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.json.JsonObject
verifyKeyLocationAsJWKResource(String kid)
jakarta.json.JsonObject
verifyKeyLocationAsJWKSResource(String kid)
jakarta.json.JsonObject
verifyKeyLocationAsPEMResource()
-
-
-
Method Detail
-
verifyKeyLocationAsPEMResource
@GET @Path("/verifyKeyLocationAsPEMResource") @Produces("application/json") @RolesAllowed("Tester") public jakarta.json.JsonObject verifyKeyLocationAsPEMResource()
-
verifyKeyLocationAsJWKResource
@GET @Path("/verifyKeyLocationAsJWKResource") @Produces("application/json") @RolesAllowed("Tester") public jakarta.json.JsonObject verifyKeyLocationAsJWKResource(@QueryParam("kid") String kid)
-
verifyKeyLocationAsJWKSResource
@GET @Path("/verifyKeyLocationAsJWKSResource") @Produces("application/json") @RolesAllowed("Tester") public jakarta.json.JsonObject verifyKeyLocationAsJWKSResource(@QueryParam("kid") String kid)
-
-