You are here

public function Idp::setAppName in SAML Service Provider 4.x

Same name and namespace in other branches
  1. 8.3 src/Entity/Idp.php \Drupal\saml_sp\Entity\Idp::setAppName()
  2. 3.x src/Entity/Idp.php \Drupal\saml_sp\Entity\Idp::setAppName()

Sets the application name.

Parameters

string $app_name: The application name.

Overrides IdpInterface::setAppName

File

src/Entity/Idp.php, line 170

Class

Idp
Defines the Idp entity.

Namespace

Drupal\saml_sp\Entity

Code

public function setAppName($app_name) {
  $this->app_name = $app_name;
}