Class OidcServices


  • @Singleton
    @Path("oidc")
    public class OidcServices
    extends step.core.deployment.AbstractStepServices
    • Field Summary

      • Fields inherited from class step.core.deployment.AbstractStepServices

        configuration, SESSION
    • 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
      • Methods inherited from class step.framework.server.AbstractServices

        getAbstractContext, getHttpSession, getSession, getSession, invalidateSession, setHttpServletRequest, setSession
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • OidcServices

        public OidcServices()
    • Method Detail

      • init

        @PostConstruct
        public void init()
                  throws java.lang.Exception
        Overrides:
        init in class step.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)