*
* @license AGPL-3.0-or-later
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see
*
*/
namespace OCA\Files_External\Lib;
interface IFrontendDefinition {
public function getText(): string;
public function setText(string $text): self;
/**
* @return array
*/
public function getParameters(): array;
/**
* @param list $parameters
*/
public function addParameters(array $parameters): self;
public function addParameter(DefinitionParameter $parameter): self;
/**
* @return string[]
*/
public function getCustomJs(): array;
public function addCustomJs(string $custom): self;
/**
* Serialize into JSON for client-side JS
*/
public function jsonSerializeDefinition(): array;
/**
* Check if parameters are satisfied in a StorageConfig
*/
public function validateStorageDefinition(StorageConfig $storage): bool;
}