Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

modifyProperties() - Eigenschaften eines Inbound Services ändern

Funktion:

BcAdminInboundService.modifyProperties()

Ändert alle Eigenschaften des angegebenen Inbound Services, die im angegebenen Dictionary enthalten sind.

Parameter:

bc_object
(BcObject vom Typ BcObjectType.INBOUND_SERVICE)

Inbound Service, dessen Eigenschaften geändert werden sollen.

props

Dictionary mit den key-value-Paaren der Eigenschaften, die geändert werden sollen. Mögliche Werte für key finden Sie in Eigenschaften eines Inbound Services

Rückgabe:

Keine

Exceptions:

BcObjectException, BcParameterException, BcToolException

Beispiel:

...
import BcAdminInboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
is_obj=BcAdminInboundService.getObject("SRV",proxy_obj)
modProps{"desc":"modified"}
BcAdminInboundService.modifyProperties(is_obj,modProps)
...