You are here

class AkamaiClient in Akamai 8.3

Defines a Plugin annotation object for the Akamai client plugin.

An Akamai client provides a specific version of the client CCU.

Plugin namespace: Plugin\Client

For a working example, see \Drupal\akamai\Plugin\Client\AkamaiClientV3

Hierarchy

Expanded class hierarchy of AkamaiClient

See also

Plugin API

1 class is annotated with AkamaiClient
AkamaiClientV3 in src/Plugin/Client/AkamaiClientV3.php
Defines the CCUv3 client version for Akamai.

File

src/Annotation/AkamaiClient.php, line 21

Namespace

Drupal\akamai\Annotation
View source
class AkamaiClient extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The title of the Akamai client.
   *
   * The string should be wrapped in a @Translation().
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

}

Members

Namesort descending Modifiers Type Description Overrides
AkamaiClient::$id public property The plugin ID.
AkamaiClient::$title public property The title of the Akamai client.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2