Class AvailableListsService

  • Direct Known Subclasses:
    ListsService

    public class AvailableListsService
    extends WebService
    A service to report what lists a user has access to, and some details of those lists.
    Author:
    Alexis Kalderimis.
    • Constructor Detail

      • AvailableListsService

        public AvailableListsService​(InterMineAPI im)
        Constructor
        Parameters:
        im - A reference to the InterMine API settings bundle
    • 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
      • getLists

        protected java.util.Collection<InterMineBag> getLists()
        Get the lists for this request.
        Returns:
        The lists that are available.
      • getListsMatching

        protected java.util.Collection<InterMineBag> getListsMatching​(ListManager listManager,
                                                                      java.lang.String nameFilter)
        Get the lists that match the current filter.
        Parameters:
        listManager - The list manager which has all the lists.
        nameFilter - Filter over the names.
        Returns:
        The lists that match the filter.
      • getDefaultFormat

        protected Format getDefaultFormat()
        Overrides:
        getDefaultFormat in class WebService
        Returns:
        The default format constant for this service.
      • 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.