Class CallbackService


  • public class CallbackService
    extends JSONService
    The service handles the requests made after the user has visited their authorisation provider to log-in. That provider will then send them off here with a code that we need to use to access their user details via a two-step process (get an authorisation token, and then get user details). If all is well, this controller will log the user in Duplication of the Callback class used by struts. See org.intermine.web.struts.oauth2.Callback
    Author:
    Alex Kalderimis, Daniela Butano
    • Constructor Detail

      • CallbackService

        public CallbackService​(InterMineAPI im)
        Constructor
        Parameters:
        im - The InterMine state object.
    • Method Detail

      • getResultsKey

        protected java.lang.String getResultsKey()
        Overrides:
        getResultsKey in class JSONService
        Returns:
        The key for the results property.
      • execute

        protected void execute()
                        throws java.lang.Exception
        Description copied from class: WebService
        Runs service. This is abstract method, that must be defined in subclasses and so performs something useful. Standard procedure is overwrite this method in subclasses and let this method to be called from WebService.doGet method that encapsulates logic common for all web services else you can overwrite doGet method in your web service class and manage all the things alone.
        Specified by:
        execute in class WebService
        Throws:
        java.lang.Exception - if some error occurs