Uses of Class
org.deegree.protocol.ows.exception.OWSException

Packages that use OWSException
org.deegree.protocol.ows.exception   
org.deegree.protocol.wfs.getfeature   
org.deegree.protocol.wfs.getpropertyvalue   
org.deegree.protocol.wfs.query   
org.deegree.protocol.wms.ops   
org.deegree.services   
org.deegree.services.controller   
org.deegree.services.controller.exception   
org.deegree.services.controller.exception.serializer   
org.deegree.services.csw   
org.deegree.services.csw.exporthandling   
org.deegree.services.csw.getrepositoryitem   
org.deegree.services.csw.profile   
org.deegree.services.ows   
org.deegree.services.sos   
org.deegree.services.wcs   
org.deegree.services.wcs.describecoverage   
org.deegree.services.wcs.getcoverage   
org.deegree.services.wfs   
org.deegree.services.wfs.format.gml   
org.deegree.services.wms.controller   
org.deegree.services.wms.controller.ops   
org.deegree.services.wms.controller.sld   
org.deegree.services.wps   
org.deegree.services.wps.ap.wcts   
org.deegree.services.wps.execute   
org.deegree.services.wpvs   
org.deegree.services.wpvs.controller   
org.deegree.services.wpvs.controller.getview   
org.deegree.tools.rendering   
 

Uses of OWSException in org.deegree.protocol.ows.exception
 

Methods in org.deegree.protocol.ows.exception that return types with arguments of type OWSException
 List<OWSException> OWSExceptionReport.getExceptions()
           
 

Constructor parameters in org.deegree.protocol.ows.exception with type arguments of type OWSException
OWSExceptionReport(List<OWSException> exceptions, String lang, String version)
           
 

Uses of OWSException in org.deegree.protocol.wfs.getfeature
 

Methods in org.deegree.protocol.wfs.getfeature that throw OWSException
 GetFeature GetFeatureXMLAdapter.parse200()
          Parses a WFS 2.0.0 GetFeature document into a GetFeature object.
 

Uses of OWSException in org.deegree.protocol.wfs.getpropertyvalue
 

Methods in org.deegree.protocol.wfs.getpropertyvalue that throw OWSException
 GetPropertyValue GetPropertyValueXMLAdapter.parse()
          Parses a GetPropertyValue element into a GetPropertyValue object.
 GetPropertyValue GetPropertyValueXMLAdapter.parse200()
          Parses a WFS 2.0.0 GetPropertyValue document into a GetPropertyValue object.
 

Uses of OWSException in org.deegree.protocol.wfs.query
 

Methods in org.deegree.protocol.wfs.query that throw OWSException
 Query QueryXMLAdapter.parseAbstractQuery200(org.apache.axiom.om.OMElement queryEl)
          Parses a fes:AbstractQueryExpression element (in the context of a WFS 2.0.0 XML request).
 

Uses of OWSException in org.deegree.protocol.wms.ops
 

Constructors in org.deegree.protocol.wms.ops that throw OWSException
GetFeatureInfo(Map<String,String> map, Version version)
           
GetMap(Map<String,String> map, Version version)
           
 

Uses of OWSException in org.deegree.services
 

Methods in org.deegree.services with type parameters of type OWSException
<T extends OWSException>
void
OWSResponse.sendException(String contentType, Map<String,String> additionalHeaders, int httpStatusCode, ExceptionSerializer<T> serializer, T exception)
          Sends an OWSException to the client.
 

Methods in org.deegree.services that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> OWS.getExceptionSerializer(Version requestVersion)
          Returns the ExceptionSerializer and mime-type suitable for the given request version.
 

Uses of OWSException in org.deegree.services.controller
 

Methods in org.deegree.services.controller with type parameters of type OWSException
<E extends OWSException>
void
AbstractOWS.sendException(String contentType, String encoding, Map<String,String> additionalHeaders, int httpStatusCode, ExceptionSerializer<E> serializer, E exception, javax.servlet.http.HttpServletResponse response)
           
static
<E extends OWSException>
void
AbstractOWS.sendException(String contentType, String encoding, Map<String,String> additionalHeaders, int httpStatusCode, ExceptionSerializer<E> serializer, ImplementationMetadata<?> md, E exception, javax.servlet.http.HttpServletResponse response)
          Sends an exception to the client.
 

Methods in org.deegree.services.controller that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> AbstractOWS.getExceptionSerializer(Version requestVersion)
          Returns the ExceptionSerializer and mime-type suitable for the given request version.
 

Methods in org.deegree.services.controller with parameters of type OWSException
 void AbstractOWS.sendSOAPException(org.apache.axiom.soap.SOAPHeader header, org.apache.axiom.soap.SOAPFactory factory, HttpResponseBuffer response, OWSException exception, XMLExceptionSerializer<OWSException> serializer, String SOAPFaultCode, String SOAPMessage, String SOAPaction, String characterEncoding)
          Encapsulates the given OWSException into a SOAP environment for which the given factory will be used.
 

Method parameters in org.deegree.services.controller with type arguments of type OWSException
 void AbstractOWS.sendSOAPException(org.apache.axiom.soap.SOAPHeader header, org.apache.axiom.soap.SOAPFactory factory, HttpResponseBuffer response, OWSException exception, XMLExceptionSerializer<OWSException> serializer, String SOAPFaultCode, String SOAPMessage, String SOAPaction, String characterEncoding)
          Encapsulates the given OWSException into a SOAP environment for which the given factory will be used.
 

Methods in org.deegree.services.controller that throw OWSException
protected  Version AbstractOWS.checkVersion(Version requestedVersion)
          Checks if a request version can be handled by this controller (i.e. if is supported by the implementation *and* offered by the current configuration).
protected  Version AbstractOWS.negotiateVersion(GetCapabilities request)
          Generic version negotiation algorithm for GetCapabilities requests according to OWS Common Specification 1.1.0 (OGC 06-121r3), section 7.3.2 and D.11.
 

Uses of OWSException in org.deegree.services.controller.exception
 

Subclasses of OWSException in org.deegree.services.controller.exception
 class SOAPException
          The SoapException class wraps the soap specific fault parameters.
 

Methods in org.deegree.services.controller.exception that return OWSException
 OWSException SOAPException.getDetail()
           
 

Constructors in org.deegree.services.controller.exception with parameters of type OWSException
SOAPException(String reason, String code, OWSException detail)
           
 

Uses of OWSException in org.deegree.services.controller.exception.serializer
 

Classes in org.deegree.services.controller.exception.serializer with type parameters of type OWSException
 interface ExceptionSerializer<T extends OWSException>
          The ExceptionSerializer class TODO add class documentation here.
 class XMLExceptionSerializer<T extends OWSException>
          The XMLExceptionSerializer class TODO add class documentation here.
 

Methods in org.deegree.services.controller.exception.serializer with type parameters of type OWSException
<T extends OWSException>
ExceptionSerializer<T>
SerializerProvider.getSerializer(ImplementationMetadata<?> metadata, ExceptionSerializer<T> originalSerializer)
           
 

Constructor parameters in org.deegree.services.controller.exception.serializer with type arguments of type OWSException
SOAPExceptionSerializer(org.apache.axiom.soap.SOAPVersion version, org.apache.axiom.soap.SOAPHeader header, org.apache.axiom.soap.SOAPFactory factory, XMLExceptionSerializer<OWSException> detailSerializer)
           
 

Uses of OWSException in org.deegree.services.csw
 

Methods in org.deegree.services.csw that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> CSWController.getExceptionSerializer(Version requestVersion)
           
 

Uses of OWSException in org.deegree.services.csw.exporthandling
 

Methods in org.deegree.services.csw.exporthandling that throw OWSException
 void DescribeRecordHandler.doDescribeRecord(DescribeRecord descRec, HttpResponseBuffer response, ServiceProfile profile)
          Preprocessing for the export of a DescribeRecord request to determine which recordstore is requested.
 void GetRecordByIdHandler.doGetRecordById(GetRecordById getRecBI, HttpResponseBuffer response, MetadataStore<?> store, ServiceProfile profile)
          Preprocessing for the export of a GetRecordById request
 void GetRecordsHandler.doGetRecords(GetRecords getRec, HttpResponseBuffer response, MetadataStore<?> store)
          Preprocessing for the export of a GetRecords request
 void TransactionHandler.doTransaction(Transaction trans, HttpResponseBuffer response, MetadataStore<?> store)
          Preprocessing for the export of a Transaction request
protected  void GetRecordsHandler.exportSearchResults202(XMLStreamWriter writer, GetRecords getRec, MetadataStore<?> store)
          Exports the result container that contains the requested elements
 

Uses of OWSException in org.deegree.services.csw.getrepositoryitem
 

Methods in org.deegree.services.csw.getrepositoryitem that throw OWSException
 void GetRepositoryItemHandler.doGetRepositoryItem(GetRepositoryItem getRepItem, HttpResponseBuffer response)
           
 

Uses of OWSException in org.deegree.services.csw.profile
 

Methods in org.deegree.services.csw.profile that throw OWSException
 String EbrimProfile.getAcceptFormat(GetCapabilities getCapabilitiesRequest)
           
 String CommonCSWProfile.getAcceptFormat(GetCapabilities getCapabilitiesRequest)
           
 String ServiceProfile.getAcceptFormat(GetCapabilities getCapabilitiesRequest)
           
 

Uses of OWSException in org.deegree.services.ows
 

Methods in org.deegree.services.ows with parameters of type OWSException
 void OWSException110XMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
          Export an ExceptionReport to the ows 1.1.0 format.
 void OWSException120XMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
          Export an ExceptionReport to the ows 1.0.0 format.
 void NamespacelessOWSExceptionXMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
          Export an ExceptionReport without namespace.
 void OWSException100XMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
           
 void OGCExceptionXMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
          Export an ExceptionReport in WMS 1.3.0 format (and possibly others).
 

Uses of OWSException in org.deegree.services.sos
 

Methods in org.deegree.services.sos that return OWSException
static OWSException OWSExceptionAdapter.adapt(SOServiceException e)
           
 

Methods in org.deegree.services.sos that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> SOSController.getExceptionSerializer(Version requestVersion)
           
 

Uses of OWSException in org.deegree.services.wcs
 

Methods in org.deegree.services.wcs that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> WCSController.getExceptionSerializer(Version requestVersion)
           
 

Methods in org.deegree.services.wcs with parameters of type OWSException
 void ServiceException120XMLAdapter.serializeExceptionToXML(XMLStreamWriter writer, OWSException ex)
           
 

Methods in org.deegree.services.wcs that throw OWSException
protected  void WCSRequest100XMLAdapter.checkRequiredElement(String nodeName, org.apache.axiom.om.OMElement requiredElem)
          Check that the requiredElem is not null, throws OWSException otherwise.
protected  void WCSRequest100XMLAdapter.checkRequiredString(String nodeName, String requiredValue)
          Check that the value is not null, throws OWSException otherwise.
protected  Version WCSRequest100XMLAdapter.checkVersion(org.apache.axiom.om.OMElement root)
          Checks that the given element contains a version attribute.
 

Uses of OWSException in org.deegree.services.wcs.describecoverage
 

Methods in org.deegree.services.wcs.describecoverage that throw OWSException
 DescribeCoverage DescribeCoverage100XMLAdapter.parse()
           
 

Uses of OWSException in org.deegree.services.wcs.getcoverage
 

Methods in org.deegree.services.wcs.getcoverage that throw OWSException
 GetCoverage GetCoverage100XMLAdapter.parse()
           
static GetCoverage GetCoverage100KVPAdapter.parse(Map<String,String> kvp)
          Parse a 1.0.0 WCS KVP request
 

Uses of OWSException in org.deegree.services.wfs
 

Methods in org.deegree.services.wfs that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> WebFeatureService.getExceptionSerializer(Version requestVersion)
           
 

Methods in org.deegree.services.wfs that throw OWSException
protected  Version WebFeatureService.checkVersion(Version requestedVersion)
          Checks if a request version can be handled by this controller (i.e. if is supported by the implementation *and* offered by the current configuration).
 

Constructors in org.deegree.services.wfs that throw OWSException
QueryAnalyzer(List<Query> wfsQueries, WebFeatureService controller, WFSFeatureStoreManager service, GMLVersion outputFormat, boolean checkInputDomain)
          Creates a new QueryAnalyzer.
 

Uses of OWSException in org.deegree.services.wfs.format.gml
 

Methods in org.deegree.services.wfs.format.gml that throw OWSException
 void GMLFormat.doDescribeFeatureType(DescribeFeatureType request, HttpResponseBuffer response)
           
 

Uses of OWSException in org.deegree.services.wms.controller
 

Fields in org.deegree.services.wms.controller with type parameters of type OWSException
protected  XMLExceptionSerializer<OWSException> WMSControllerBase.EXCEPTIONS
           
 

Methods in org.deegree.services.wms.controller that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> WMSController.getExceptionSerializer(Version requestVersion)
           
 

Methods in org.deegree.services.wms.controller with parameters of type OWSException
 void WMSController.Controller.handleException(Map<String,String> map, WMSConstants.WMSRequestType req, OWSException e, HttpResponseBuffer response, WMSController controller)
           
 void WMSControllerBase.handleException(Map<String,String> map, WMSConstants.WMSRequestType req, OWSException e, HttpResponseBuffer response, WMSController controller)
           
 void WMSController.Controller.sendException(OWSException ex, HttpResponseBuffer response)
           
 void WMSController111.sendException(OWSException ex, HttpResponseBuffer response)
           
 void WMSController130.sendException(OWSException ex, HttpResponseBuffer response)
           
 

Methods in org.deegree.services.wms.controller that throw OWSException
protected  void WMSController.getCapabilities(Map<String,String> map, HttpResponseBuffer response)
           
 void WMSController.Controller.getCapabilities(String getUrl, String postUrl, String updateSequence, MapService service, HttpResponseBuffer response, ServiceIdentification identification, ServiceProvider provider, Map<String,String> customParameters, WMSController controller)
           
 void WMSControllerBase.getCapabilities(String getUrl, String postUrl, String updateSequence, MapService service, HttpResponseBuffer response, ServiceIdentification identification, ServiceProvider provider, Map<String,String> customParameters, WMSController controller)
           
protected  void WMSController.getMap(Map<String,String> map, HttpResponseBuffer response, Version version)
           
protected  void WMSController.getMap(Map<String,String> map, HttpResponseBuffer response, Version version)
           
 void WMSController.sendImage(BufferedImage img, HttpResponseBuffer response, String format)
           
 void WMSController.Controller.throwSRSException(String name)
           
 void WMSController111.throwSRSException(String name)
           
 void WMSController130.throwSRSException(String name)
           
 

Uses of OWSException in org.deegree.services.wms.controller.ops
 

Methods in org.deegree.services.wms.controller.ops that throw OWSException
static LinkedList<?> GetMap.parseDimensionValues(String value, String name)
           
 

Constructors in org.deegree.services.wms.controller.ops that throw OWSException
GetFeatureInfo(Map<String,String> map, Version version, MapService service)
           
GetLegendGraphic(Map<String,String> map, MapService service)
           
GetMap(Map<String,String> map, Version version, MapService service)
           
 

Uses of OWSException in org.deegree.services.wms.controller.sld
 

Methods in org.deegree.services.wms.controller.sld that throw OWSException
static Pair<LinkedList<Layer>,LinkedList<Style>> SLDParser.parse(XMLStreamReader in, MapService service, GetMap gm)
           
 

Uses of OWSException in org.deegree.services.wps
 

Methods in org.deegree.services.wps that return OWSException
 OWSException ProcessExecution.getFailedException()
          Returns the exception that describes the reason for the failure of the process execution.
 OWSException ProcessletException.getOWSException()
           
 OWSException ExceptionCustomizer.inputEvalutationNotSupported(CodeType inputParameterId, Pair<String,String> kvp, String explanation)
           
 OWSException DefaultExceptionCustomizer.inputEvalutationNotSupported(CodeType inputParameterId, Pair<String,String> kvp, String explanation)
           
 OWSException ExceptionCustomizer.inputInvalidBBoxCoordinates(CodeType inputParameterId, String[] suppliedCoordinates)
           
 OWSException DefaultExceptionCustomizer.inputInvalidBBoxCoordinates(CodeType inputParameterId, String[] suppliedCoordinates)
           
 OWSException ExceptionCustomizer.inputInvalidCombination(CodeType inputParameterId, List<Pair<String,String>> conflictingKVPs)
           
 OWSException DefaultExceptionCustomizer.inputInvalidCombination(CodeType inputParameterId, List<Pair<String,String>> conflictingKVPs)
           
 OWSException ExceptionCustomizer.inputInvalidDatatype(CodeType inputParameterId, String foundDatatype, String definedDataType)
           
 OWSException DefaultExceptionCustomizer.inputInvalidDatatype(CodeType parameterId, String foundDatatype, String definedDataType)
           
 OWSException ExceptionCustomizer.inputInvalidOccurrence(CodeType inputParameterId, int minOccurs, int maxOccurs, int actualOccurs)
           
 OWSException DefaultExceptionCustomizer.inputInvalidOccurrence(CodeType inputParameterId, int minOccurs, int maxOccurs, int actualOccurs)
           
 OWSException ExceptionCustomizer.inputInvalidParameter(CodeType inputParameterId, Pair<String,String> kvp)
           
 OWSException DefaultExceptionCustomizer.inputInvalidParameter(CodeType inputParameterId, Pair<String,String> kvp)
           
 OWSException ExceptionCustomizer.inputMissingParameter(CodeType inputParameterId, String parameter)
           
 OWSException DefaultExceptionCustomizer.inputMissingParameter(CodeType inputParameterId, String parameter)
           
 OWSException ExceptionCustomizer.inputMissingParameters(CodeType inputParameterId, String... parameters)
           
 OWSException DefaultExceptionCustomizer.inputMissingParameters(CodeType inputParameterId, String... parameters)
           
 OWSException ExceptionCustomizer.inputMutualExclusive(CodeType inputParameterId, String parameter, String excludes)
           
 OWSException DefaultExceptionCustomizer.inputMutualExclusive(CodeType identifier, String parameter, String excludes)
           
 OWSException ExceptionCustomizer.inputNoSuchParameter(CodeType identifier)
           
 OWSException DefaultExceptionCustomizer.inputNoSuchParameter(CodeType identifier)
           
 OWSException ExceptionCustomizer.invalidAttributedParameter(Pair<String,String> kvp)
           
 OWSException DefaultExceptionCustomizer.invalidAttributedParameter(Pair<String,String> kvp)
           
 OWSException ExceptionCustomizer.missingParameter(String parameter)
           
 OWSException DefaultExceptionCustomizer.missingParameter(String parameter)
           
 OWSException ExceptionCustomizer.missingParameters(String... parameters)
           
 OWSException DefaultExceptionCustomizer.missingParameters(String... parameters)
           
 OWSException ExceptionCustomizer.mutualExclusive(String parameter, String excludes)
           
 OWSException DefaultExceptionCustomizer.mutualExclusive(String parameter, String excludes)
           
 OWSException ExceptionCustomizer.outputInvalidCombination(CodeType outputParameterId, List<Pair<String,String>> conflictingKVPs)
           
 OWSException DefaultExceptionCustomizer.outputInvalidCombination(CodeType outputParameterId, List<Pair<String,String>> conflictingKVPs)
           
 OWSException ExceptionCustomizer.outputInvalidParameter(CodeType outputParameterId, Pair<String,String> kvp)
           
 OWSException DefaultExceptionCustomizer.outputInvalidParameter(CodeType outputParameterId, Pair<String,String> kvp)
           
 OWSException ExceptionCustomizer.outputNoSuchParameter(CodeType outputParameterId)
           
 OWSException DefaultExceptionCustomizer.outputNoSuchParameter(CodeType outputParameterId)
           
 

Methods in org.deegree.services.wps that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> WPService.getExceptionSerializer(Version requestVersion)
           
 

Constructors in org.deegree.services.wps with parameters of type OWSException
ProcessletException(OWSException owsException)
           
 

Uses of OWSException in org.deegree.services.wps.ap.wcts
 

Methods in org.deegree.services.wps.ap.wcts that return OWSException
 OWSException ExceptionCustomizer.inputMissingParameter(CodeType inputParameterId, String parameter)
           
 OWSException ExceptionCustomizer.inputMissingParameters(CodeType inputParameterId, String... parameters)
           
 

Uses of OWSException in org.deegree.services.wps.execute
 

Methods in org.deegree.services.wps.execute that throw OWSException
 ExecuteRequest ExecuteRequestXMLAdapter.parse100()
          Parses the encapsulated WPS 1.0.0 <wps:ExecuteRequest> element.
static ExecuteRequest ExecuteRequestKVPAdapter.parse100(Map<String,String> kvpParams, Map<CodeType,WPSProcess> idToProcess)
          Parses the given WPS 1.0.0 ExecuteRequest KVP request.
 

Uses of OWSException in org.deegree.services.wpvs
 

Methods in org.deegree.services.wpvs that throw OWSException
 BufferedImage PerspectiveViewService.getImage(GetView request)
          Renders an image for requested datasets.
 

Uses of OWSException in org.deegree.services.wpvs.controller
 

Methods in org.deegree.services.wpvs.controller that return types with arguments of type OWSException
 Pair<XMLExceptionSerializer<OWSException>,String> WPVSController.getExceptionSerializer(Version requestVersion)
           
 

Uses of OWSException in org.deegree.services.wpvs.controller.getview
 

Methods in org.deegree.services.wpvs.controller.getview that throw OWSException
static GetView GetViewKVPAdapter.create(Map<String,String> requestParams, String encoding, double[] translationVector, double configuredNearClippingPlane, double configuredFarClippingPlane)
          Factory method to create an instance of GetView from teh parameters in model
 

Uses of OWSException in org.deegree.tools.rendering
 

Methods in org.deegree.tools.rendering that throw OWSException
static void InteractiveWPVS.main(String[] args)
           
 



Copyright © 2011. All Rights Reserved.