You are here

public function ServiceResource::getEndpoint in Services 8.4

Same name and namespace in other branches
  1. 9.0.x src/Entity/ServiceResource.php \Drupal\services\Entity\ServiceResource::getEndpoint()

Service endpoint object.

File

src/Entity/ServiceResource.php, line 182

Class

ServiceResource
Defines service resource entity.

Namespace

Drupal\services\Entity

Code

public function getEndpoint() {
  return $this
    ->entityTypeManager()
    ->getStorage('service_endpoint')
    ->load($this->service_endpoint_id);
}