Loading...
Select Version
Function: |
Reads all the properties of the specified resource adapter and returns a dictionary with key-value pairs for the properties. You can find the possible values for key in Properties of a resource adapter . |
Parameters: |
Resource adapter whose properties are to be read. |
Return: | Dictionary with the key-value pairs for all the properties of the resource adapter. |
Exceptions: |
|
Example: | ... import BcAdminRA import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") ra_obj=BcAdminRA.getObject("test-RA", proxy_obj) raProps=BcAdminRA.getProperties(ra_obj) ... |