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 inbound user object from the configuration

Function:

BcAdminInboundUser.getObject()

Reads the specified inbound user from the configuration.

Parameters:

object_name (string)

Name of the BeanConnect inbound user that is to be read.

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

Proxy or proxy cluster to which the inbound user is assigned.
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.

Return:

(BcObject of type BcObjectType.INBOUND_USER)

The read inbound user or None if no inbound user with a corresponding name exists.

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminInboundUser
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
user_obj =BcAdminInboundUser.getObject("USR",proxy_obj)
...