Class ListMakerService

    • Field Detail

    • Constructor Detail

      • ListMakerService

        public ListMakerService​(InterMineAPI api)
        Constructor.
        Parameters:
        api - The InterMine settings bundle.
    • 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 AuthenticatedListService
      • 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.
      • canServe

        protected boolean canServe​(Format format)
        Description copied from class: WebService
        Check whether the format is acceptable. By default returns true. Services with a particular set of accepted formats should override this and check.
        Overrides:
        canServe in class WebService
        Parameters:
        format - The format to check.
        Returns:
        whether or not this format is acceptable.
      • initialiseDelendumAccumulator

        protected void initialiseDelendumAccumulator​(java.util.Set<java.lang.String> accumulator,
                                                     ListInput input)
        Initialise the accumulator that builds up the list of temporary lists to delete.
        Parameters:
        accumulator - The accumulator we are using.
        input - The parsed parameter input.
      • getNewListType

        protected abstract java.lang.String getNewListType​(ListInput input)
        Calculate the type of the new list.
        Parameters:
        input - The parsed parameter input.
        Returns:
        The type name.
      • 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
      • makeList

        protected abstract void makeList​(ListInput input,
                                         java.lang.String type,
                                         Profile profile,
                                         java.util.Set<java.lang.String> temporaryBagNamesAccumulator)
                                  throws java.lang.Exception
        Make the list requested by the user.
        Parameters:
        input - The parsed parameter input.
        type - The type of the new list.
        profile - The profile to save the list in.
        temporaryBagNamesAccumulator - The accumulator to store the list of bags to delete.
        Throws:
        java.lang.Exception - If something goes wrong.