Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies all the properties of the specified resource adapter that are present in the specified dictionary. |
Parameters: |
Resource adapter whose properties are to be modified.
Dictionary with the key-value pairs for the properties that are to be modified. For possible values of key, see Properties of a resource adapter |
Return: | None |
Exceptions: |
|
Example: | ...
import BcAdminRA
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ra_obj=BcAdminRA.getObject("test-RA", proxy_obj)
modProps={"desc":"modified"}
BcAdminRA.modifyProperties(ra_obj,modProps)
...
|