Class CodeService
- java.lang.Object
-
- org.intermine.webservice.server.WebService
-
- org.intermine.webservice.server.query.AbstractQueryService
-
- org.intermine.webservice.server.query.CodeService
-
public class CodeService extends AbstractQueryService
A service for generating code based on a query.- Author:
- Alex Kalderimis
-
-
Field Summary
Fields Modifier and Type Field Description protected static org.apache.log4j.LoggerLOG-
Fields inherited from class org.intermine.webservice.server.WebService
dataPackageOutput, DEFAULT_CALLBACK, im, os, out, output, request, response, webProperties
-
-
Constructor Summary
Constructors Constructor Description CodeService(InterMineAPI im)Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanServe(Format format)Check whether the format is acceptable.protected voidexecute()Runs service.protected java.lang.StringgetDefaultFileName()protected FormatgetDefaultFormat()protected java.lang.StringgetExtension()protected static booleanpathQueryIsPublic(PathQuery pq, InterMineAPI im, Profile p)Utility function to determine whether the PathQuery is publicly accessible.-
Methods inherited from class org.intermine.webservice.server.query.AbstractQueryService
formatIsJsonObj, getQueryBuilder, getSchemaLocation, getSchemaUrl
-
Methods inherited from class org.intermine.webservice.server.WebService
cleanUp, formatIsFlatFile, formatIsJSON, formatIsJSONP, formatIsXML, getAuthenticatedUser, getCallback, getColumnHeaderStyle, getDefaultOutput, getDefaultOutput, getFormat, getIntParameter, getIntParameter, getLineBreak, getListManager, getOptionalParameter, getOptionalParameter, getPermission, getProperty, getRawOutput, getRequestFileName, getRequiredParameter, hasCallback, initState, isAuthenticated, isGzip, isUncompressed, isZip, makeJSONOutput, makeXMLOutput, postInit, service, setFormat, setNameSpace, validateState, wantsColumnHeaders, wantsDataPackage
-
-
-
-
Constructor Detail
-
CodeService
public CodeService(InterMineAPI im)
Constructor.- Parameters:
im- The InterMine application object.
-
-
Method Detail
-
getDefaultFormat
protected Format getDefaultFormat()
- Overrides:
getDefaultFormatin classWebService- Returns:
- The default format constant for this service.
-
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.
-
getDefaultFileName
protected java.lang.String getDefaultFileName()
- Overrides:
getDefaultFileNamein classWebService- Returns:
- The default file name for this service. (default = "result.tsv")
-
getExtension
protected java.lang.String getExtension()
- Overrides:
getExtensionin classWebService- Returns:
- the file-name extension for the result-set.
-
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
-
pathQueryIsPublic
protected static boolean pathQueryIsPublic(PathQuery pq, InterMineAPI im, Profile p)
Utility function to determine whether the PathQuery is publicly accessible. PathQueries are accessibly publicly as long as they do not reference private lists.- Parameters:
pq- The query to interrogateim- A reference to the InterMine APIp- A user's profile- Returns:
- whether the query is accessible publicly or not
-
-