fmewebservices.FMEWebService¶

FMEWebService.getDescription () |
Retrieves the optional description of this Web Service. |
FMEWebService.getHelpURL () |
Retrieves the optional help url of this Web Service. |
FMEWebService.getName () |
Retrieves the unique name of this Web Service. |
FMEWebService.getSourceWebServiceName () |
Gets the source name for the original Web Service for the derived Web Services. |
FMEWebService.isDerivedWebService () |
Returns True if the Web Service is derived from another source. |
FMEWebService.isInstalledWebService () |
Returns True if the Web Service is an installed Web Service. |
FMEWebService.setDescription (description) |
Sets the optional description of this Web Service. |
FMEWebService.setHelpURL (url) |
Sets the optional help url of this Web Service. |
FMEWebService.setName (name) |
Sets the unique name of this Web Service. |
FMEWebService.setSourceWebServiceName (name) |
Sets the source name for the original Web Service for the derived Web Services. |
-
class
FMEWebService
¶ Bases:
object
FME Web Service class.
init()
FMEWebService is an abstract class. It cannot be created directly.
-
__init__
¶ Initialize self. See help(type(self)) for accurate signature.
-
getDescription
()¶ Retrieves the optional description of this Web Service.
Return type: str Returns: The description of the Web Service.
-
getHelpURL
()¶ Retrieves the optional help url of this Web Service.
Return type: str Returns: The url of the Web Service.
-
getName
()¶ Retrieves the unique name of this Web Service.
Return type: str Returns: The name of the Web Service.
-
getSourceWebServiceName
()¶ Gets the source name for the original Web Service for the derived Web Services.
Return type: str Returns: The source web service name.
-
isDerivedWebService
()¶ Returns
True
if the Web Service is derived from another source.Return type: bool
Returns: Whether or not the Web Service is derived from another source.
-
isInstalledWebService
()¶ Returns
True
if the Web Service is an installed Web Service.Return type: bool
Returns: Whether or not the Web Service is an installed Web Service.
-
setDescription
(description)¶ Sets the optional description of this Web Service.
Parameters: description (str) – The description to set on the Web Service. Return type: None
-
setHelpURL
(url)¶ Sets the optional help url of this Web Service.
Parameters: url (str) – The url to set on the Web Service. Return type: None
-