Package net.opengis.ows11
Interface ExceptionType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
ExceptionTypeImpl
public interface ExceptionType extends EObject
A 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getExceptionCode()
Returns the value of the 'Exception Code' attribute.EList
getExceptionText()
Returns the value of the 'Exception Text' attribute list.String
getLocator()
Returns the value of the 'Locator' attribute.void
setExceptionCode(String value)
Sets the value of the 'Exception Code
' attribute.void
setLocator(String value)
Sets the value of the 'Locator
' attribute.
-
-
-
Method Detail
-
getExceptionText
EList 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()
-
getExceptionCode
String 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()
-
setExceptionCode
void setExceptionCode(String value)
Sets the value of the 'Exception Code
' attribute.- Parameters:
value
- the new value of the 'Exception Code' attribute.- See Also:
getExceptionCode()
-
getLocator
String 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()
-
setLocator
void setLocator(String value)
Sets the value of the 'Locator
' attribute.- Parameters:
value
- the new value of the 'Locator' attribute.- See Also:
getLocator()
-
-