//SPDX-License-Identifier: MIT pragma solidity =0.8.0; import "./IERC165.sol"; interface IEthItemOrchestratorDependantElement is IERC165 { /** * @dev GET - The DoubleProxy of the DFO linked to this Contract */ function doubleProxy() external view returns (address); /** * @dev SET - The DoubleProxy of the DFO linked to this Contract * It can be done only by the Factory controller * @param newDoubleProxy the new DoubleProxy address */ function setDoubleProxy(address newDoubleProxy) external; function isAuthorizedOrchestrator(address operator) external view returns(bool); }