You are here

CmisConnectionEntityInterface.php in CMIS API 8.2

Same filename and directory in other branches
  1. 3.0.x src/Entity/CmisConnectionEntityInterface.php

Namespace

Drupal\cmis\Entity

File

src/Entity/CmisConnectionEntityInterface.php
View source
<?php

declare (strict_types=1);
namespace Drupal\cmis\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining CMIS connection entities.
 */
interface CmisConnectionEntityInterface extends ConfigEntityInterface {

  /**
   * Get CMIS url.
   *
   * @return string
   *   Return CMIS Url.
   */
  public function getCmisUrl();

  /**
   * Get CMIS user name.
   *
   * @return string
   *   Return CMIS Username.
   */
  public function getCmisUser();

  /**
   * Get CMIS password.
   *
   * @return string
   *   return CMIS password.
   */
  public function getCmisPassword();

  /**
   * Get CMIS repository id.
   *
   * @return string
   *   Return CMIS repository id.
   */
  public function getCmisRepository();

  /**
   * Get CMIS root folder id.
   *
   * @return string
   *   Return CMIS root folder id.
   */
  public function getCmisRootFolder();

  /**
   * Get CMIS repository cacheable flag.
   *
   * @return bool
   *   Return CMIS cacheable flag.
   */
  public function getCmisCacheable();

}

Interfaces

Namesort descending Description
CmisConnectionEntityInterface Provides an interface for defining CMIS connection entities.