Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

getObject() - Read EIS partner object from the configuration

Function:

BcAdminEisPartner.getObject()

Reads the EIS partner with the specified name from the configuration.

Parameters:

object_name (string)

Name of the BeanConnect EIS partner that is to be read.

proxy_object
(BcObject of type BcObjectType.PROXY / BcObjectType.PROXY_CLUSTER)

Proxy or proxy cluster to which the EIS partner is assigned.

Return:

(BcObject of type BcObjectType.EIS_PARTNER)

The read EIS partner or None if no EIS partner with a corresponding name exists.

Exceptions:

BcObjectException, BcParameterException, BcToolException

Note:

The specification of a proxy_object of type BcObjectType.PROXY is only permitted if the proxy is not present in a proxy cluster. In this case, the proxy cluster object must be specified as a parameter here.

Example:

...
import BcAdminEisPartner
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj)
...