Class QueryRemovalService
- java.lang.Object
-
- org.intermine.webservice.server.WebService
-
- org.intermine.webservice.server.core.JSONService
-
- org.intermine.webservice.server.core.ReadWriteJSONService
-
- org.intermine.webservice.server.query.QueryRemovalService
-
public class QueryRemovalService extends ReadWriteJSONService
A service that removes a saved query from profile's collection of saved queries.- Author:
- Alex Kalderimis
-
-
Field Summary
-
Fields inherited from class org.intermine.webservice.server.core.JSONService
bagManager, model
-
Fields inherited from class org.intermine.webservice.server.WebService
dataPackageOutput, DEFAULT_CALLBACK, im, os, out, output, request, response, webProperties
-
-
Constructor Summary
Constructors Constructor Description QueryRemovalService(InterMineAPI im)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanServe(Format format)Check whether the format is acceptable.protected voidexecute()Runs service.-
Methods inherited from class org.intermine.webservice.server.core.ReadWriteJSONService
validateState
-
Methods inherited from class org.intermine.webservice.server.core.JSONService
addOutputInfo, addResultEntries, addResultEntries, addResultEntry, addResultEntry, addResultItem, addResultItem, addResultValue, addResultValue, addResultValue, getDefaultFormat, getHeaderAttributes, getResultsKey, lazyList, postInit
-
Methods inherited from class org.intermine.webservice.server.WebService
cleanUp, formatIsFlatFile, formatIsJSON, formatIsJSONP, formatIsXML, getAuthenticatedUser, getCallback, getColumnHeaderStyle, getDefaultFileName, getDefaultOutput, getDefaultOutput, getExtension, getFormat, getIntParameter, getIntParameter, getLineBreak, getListManager, getOptionalParameter, getOptionalParameter, getPermission, getProperty, getRawOutput, getRequestFileName, getRequiredParameter, hasCallback, initState, isAuthenticated, isGzip, isUncompressed, isZip, makeJSONOutput, makeXMLOutput, service, setFormat, setNameSpace, wantsColumnHeaders, wantsDataPackage
-
-
-
-
Constructor Detail
-
QueryRemovalService
public QueryRemovalService(InterMineAPI im)
- Parameters:
im- The InterMine state object
-
-
Method Detail
-
execute
protected void execute()
Description copied from class:WebServiceRuns 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:
executein classWebService
-
canServe
protected boolean canServe(Format format)
Description copied from class:WebServiceCheck whether the format is acceptable. By default returns true. Services with a particular set of accepted formats should override this and check.- Overrides:
canServein classWebService- Parameters:
format- The format to check.- Returns:
- whether or not this format is acceptable.
-
-