protected abstract void validate(HttpServletRequest request) ;
/** Helper for validating request */
protected void validate(HttpServletRequest request, Set<String> params)
{
MediaType ct = FusekiLib.contentType(request) ;
boolean mustHaveQueryParam = true ;
if ( ct != null )
{
String incoming = ct.getContentType() ;
if ( WebContent.contentTypeSPARQLQuery.equals(incoming) )
{
mustHaveQueryParam = false ;
//error(HttpSC.UNSUPPORTED_MEDIA_TYPE_415, "Unofficial "+WebContent.contentTypeSPARQLQuery+" not supported") ;