Package net.opengis.ows11
Interface ExceptionType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Implementing Classes:
- ExceptionTypeImpl
 
 public interface ExceptionType extends EObjectA representation of the model object 'Exception Type'. An Exception element describes one detected error that a server chooses to convey to the client.The following features are supported: - See Also:
- Ows11Package.getExceptionType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExceptionCode()Returns the value of the 'Exception Code' attribute.EListgetExceptionText()Returns the value of the 'Exception Text' attribute list.StringgetLocator()Returns the value of the 'Locator' attribute.voidsetExceptionCode(String value)Sets the value of the 'Exception Code' attribute.voidsetLocator(String value)Sets the value of the 'Locator' attribute.
 
- 
- 
- 
Method Detail- 
getExceptionTextEList getExceptionText() Returns the value of the 'Exception Text' attribute list. The list contents are of typeString. Ordered sequence of text strings that describe this specific exception or error. The contents of these strings are left open to definition by each server implementation. A server is strongly encouraged to include at least one ExceptionText value, to provide more information about the detected error than provided by the exceptionCode. When included, multiple ExceptionText values shall provide hierarchical information about one detected error, with the most significant information listed first.- Returns:
- the value of the 'Exception Text' attribute list.
- See Also:
- Ows11Package.getExceptionType_ExceptionText()
 
 - 
getExceptionCodeString getExceptionCode() Returns the value of the 'Exception Code' attribute. A code representing the type of this exception, which shall be selected from a set of exceptionCode values specified for the specific service operation and server.- Returns:
- the value of the 'Exception Code' attribute.
- See Also:
- setExceptionCode(String),- Ows11Package.getExceptionType_ExceptionCode()
 
 - 
setExceptionCodevoid setExceptionCode(String value) Sets the value of the 'Exception Code' attribute.- Parameters:
- value- the new value of the 'Exception Code' attribute.
- See Also:
- getExceptionCode()
 
 - 
getLocatorString getLocator() Returns the value of the 'Locator' attribute. When included, this locator shall indicate to the client where an exception was encountered in servicing the client's operation request. This locator should be included whenever meaningful information can be provided by the server. The contents of this locator will depend on the specific exceptionCode and OWS service, and shall be specified in the OWS Implementation Specification.- Returns:
- the value of the 'Locator' attribute.
- See Also:
- setLocator(String),- Ows11Package.getExceptionType_Locator()
 
 - 
setLocatorvoid setLocator(String value) Sets the value of the 'Locator' attribute.- Parameters:
- value- the new value of the 'Locator' attribute.
- See Also:
- getLocator()
 
 
- 
 
-