Class Names

    • Constructor Detail

      • Names

        public Names​(InterMineAPI im)
        Parameters:
        im - InterMine API
    • Method Detail

      • makeJSONOutput

        protected Output makeJSONOutput​(java.io.PrintWriter out,
                                        java.lang.String separator)
        Description copied from class: WebService
        Make the default JSON output given the HttpResponse's PrintWriter.
        Overrides:
        makeJSONOutput 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 JSON.
      • execute

        protected void execute()
                        throws ServiceException
        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:
        ServiceException
      • initState

        protected void initState()
        Description copied from class: WebService
        Subclasses can put initialisation here.
        Overrides:
        initState in class WebService