# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved. from itsi.objects.itsi_sandbox_service import ItsiSandboxService from itsi.service_template.service_template_utils import ServiceTemplateUtils class SandboxServiceTemplateUtils(ServiceTemplateUtils): def __init__(self, session_key, current_user_name): """ Constructor @type: string @param: session_key @type: string @param owner: "current_user_name" user invoking this call @rtype: None @return: None """ super().__init__(session_key, current_user_name) self.op = ItsiSandboxService(self._session_key, self.current_user_name)