Same filename in this branch
  1. 10 core/modules/rest/src/Annotation/RestResource.php
  2. 10 core/modules/rest/src/Attribute/RestResource.php
Same filename and directory in other branches
  1. 8.9.x core/modules/rest/src/Annotation/RestResource.php
  2. 9 core/modules/rest/src/Annotation/RestResource.php

Namespace

Drupal\rest\Annotation

File

core/modules/rest/src/Annotation/RestResource.php
View source
<?php

namespace Drupal\rest\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a REST resource annotation object.
 *
 * Plugin Namespace: Plugin\rest\resource
 *
 * For a working example, see \Drupal\dblog\Plugin\rest\resource\DbLogResource
 *
 * @see \Drupal\rest\Plugin\Type\ResourcePluginManager
 * @see \Drupal\rest\Plugin\ResourceBase
 * @see \Drupal\rest\Plugin\ResourceInterface
 * @see plugin_api
 *
 * @ingroup third_party
 *
 * @Annotation
 */
class RestResource extends Plugin {

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

  /**
   * The human-readable name of the REST resource plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * The serialization class to deserialize serialized data into.
   *
   * This property is optional and it does not need to be declared.
   *
   * @see \Symfony\Component\Serializer\SerializerInterface's "type" parameter.
   *
   * @var string
   */
  public $serialization_class;

  /**
   * The URI paths that this REST resource plugin provides.
   *
   * Key-value pairs, with link relation type plugin IDs as keys, and URL
   * templates as values.
   *
   * @see core/core.link_relation_types.yml
   *
   * @var string[]
   */
  public $uri_paths = [];

}

Classes

Namesort descending Description
RestResource Defines a REST resource annotation object.