Class AvailableWidgetsService


  • public class AvailableWidgetsService
    extends JSONService
    A service for listing the available widgets.
    Author:
    Alex Kalderimis
    • Constructor Detail

      • AvailableWidgetsService

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

      • 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
      • getHeaderAttributes

        protected java.util.Map<java.lang.String,​java.lang.Object> getHeaderAttributes()
        Description copied from class: JSONService
        Get the header attributes to apply to the formatter.
        Overrides:
        getHeaderAttributes in class JSONService
        Returns:
        A map from string to object.
      • 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.