Class DeregistrationService


  • public class DeregistrationService
    extends WebService
    Author:
    Alex Kalderimis
    • Constructor Detail

      • DeregistrationService

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

      • validateState

        protected void validateState()
        Description copied from class: WebService
        Subclasses can put initialisation checks here. The main use case is for confirming authentication.
        Overrides:
        validateState in class WebService
      • getDefaultFormat

        protected Format getDefaultFormat()
        Overrides:
        getDefaultFormat in class WebService
        Returns:
        The default format constant for this service.
      • makeXMLOutput

        protected Output makeXMLOutput​(java.io.PrintWriter out,
                                       java.lang.String separator)
        Description copied from class: WebService
        Make the XML output given the HttpResponse's PrintWriter.
        Overrides:
        makeXMLOutput in class WebService
        Parameters:
        out - The PrintWriter from the HttpResponse.
        separator - the line-separator for the client's platform.
        Returns:
        An Output that produces good XML.
      • execute

        protected void execute()
        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