You are here

SalesforceAuthProvider.php in Salesforce Suite 8.3

File

src/Annotation/SalesforceAuthProvider.php
View source
<?php

namespace Drupal\salesforce\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * SalesforceAuthProvider annotation definition.
 */
class SalesforceAuthProvider extends Plugin {

  /**
   * The plugin ID of the auth provider.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the key provider.
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * The credentials class specific to this provider.
   *
   * @var string
   */
  public $credentials_class;

}

Classes

Namesort descending Description
SalesforceAuthProvider SalesforceAuthProvider annotation definition.