/**
 * Check the client interface by name.
 *
 * @param   string  $identifier  String identifier for the application interface
 *
 * @return  boolean  True if this application is of the given type client interface.
 *
 * @since   3.7.0
 */
public function isClient($identifier)
{
    return $this->getName() === $identifier;
}