Package step.core.access.authentication
Class OidcServices
- java.lang.Object
-
- step.framework.server.AbstractServices<step.core.access.User>
-
- step.core.deployment.AbstractStepServices
-
- step.core.access.authentication.OidcServices
-
@Singleton @Path("oidc") public class OidcServices extends step.core.deployment.AbstractStepServices
-
-
Constructor Summary
Constructors Constructor Description OidcServices()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.Response
handleOidcAuthorizationCode(jakarta.servlet.http.HttpServletRequest req, jakarta.ws.rs.core.UriInfo uriInfo)
void
init()
jakarta.ws.rs.core.Response
startOidcAuthorizationCodeFlow(jakarta.ws.rs.core.UriInfo uriInfo)
-
Methods inherited from class step.core.deployment.AbstractStepServices
checkRightsOnBehalfOf, getAuthorizationManager, getContext, getExecutionRunnable, getObjectEnricher, getObjectFilter, getScheduler
-
-
-
-
Method Detail
-
init
@PostConstruct public void init() throws java.lang.Exception
- Overrides:
init
in classstep.core.deployment.AbstractStepServices
- Throws:
java.lang.Exception
-
startOidcAuthorizationCodeFlow
@GET @Consumes("application/json") @Produces("application/json") public jakarta.ws.rs.core.Response startOidcAuthorizationCodeFlow(@Context jakarta.ws.rs.core.UriInfo uriInfo)
-
handleOidcAuthorizationCode
@GET @Path("/token") @Consumes("application/json") @Produces("application/json") public jakarta.ws.rs.core.Response handleOidcAuthorizationCode(@Context jakarta.servlet.http.HttpServletRequest req, @Context jakarta.ws.rs.core.UriInfo uriInfo)
-
-