You are here

public function WsConfig::getEndpoint in Web Service Data 7

Method wsconfig->getEndpoint().

File

modules/wsconfig/wsconfig.entity.inc, line 59
Entity classes

Class

WsConfig
The class used for wsconfig entities

Code

public function getEndpoint() {
  if (isset($this->connector) and is_object($this->connector)) {
    return $this->connector
      ->getEndpoint();
  }
  return FALSE;
}