Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

remove() - Remove resource adapter

Function:

BcAdminRA.remove()

Removes the specified resource adapter from the configuration.

Parameters:

bc_object (BcObject of type BcObjectType.RESOURCE_ADAPTER).

Resource adapter that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminRA
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ra_obj=BcAdminRA.getObject("test-RA", proxy_obj)
BcAdminRA.remove(ra_obj)
...