Package net.opengis.wfs
Interface ActionType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
ActionTypeImpl
public interface ActionType extends EObject
A representation of the model object 'Action Type'.The following features are supported:
- See Also:
WfsPackage.getActionType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCode()
Returns the value of the 'Code' attribute.String
getLocator()
Returns the value of the 'Locator' attribute.String
getMessage()
Returns the value of the 'Message' attribute.void
setCode(String value)
Sets the value of the 'Code
' attribute.void
setLocator(String value)
Sets the value of the 'Locator
' attribute.void
setMessage(String value)
Sets the value of the 'Message
' attribute.
-
-
-
Method Detail
-
getMessage
String getMessage()
Returns the value of the 'Message' attribute. If an action fails, the message element may be used to supply an exception message.- Returns:
- the value of the 'Message' attribute.
- See Also:
setMessage(String)
,WfsPackage.getActionType_Message()
-
setMessage
void setMessage(String value)
Sets the value of the 'Message
' attribute.- Parameters:
value
- the new value of the 'Message' attribute.- See Also:
getMessage()
-
getCode
String getCode()
Returns the value of the 'Code' attribute. The code attribute may be used to specify an exception code indicating why an action failed.- Returns:
- the value of the 'Code' attribute.
- See Also:
setCode(String)
,WfsPackage.getActionType_Code()
-
setCode
void setCode(String value)
Sets the value of the 'Code
' attribute.- Parameters:
value
- the new value of the 'Code' attribute.- See Also:
getCode()
-
getLocator
String getLocator()
Returns the value of the 'Locator' attribute. The locator attribute is used to locate an action within a <Transaction> element. The value of the locator attribute is either a string that is equal to the value of the handle attribute specified on an <Insert>, <Update> or <Delete> action. If a value is not specified for the handle attribute then a WFS may employ some other means of locating the action. For example, the value of the locator attribute may be an integer indicating the order of the action (i.e. 1=First action, 2=Second action, etc.).- Returns:
- the value of the 'Locator' attribute.
- See Also:
setLocator(String)
,WfsPackage.getActionType_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()
-
-