mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-02-03 01:09:37 +05:30
49 lines
846 B
PHP
49 lines
846 B
PHP
<?php
|
|
|
|
namespace League\OAuth2\Server\Entities\Interfaces;
|
|
|
|
interface ClientEntityInterface
|
|
{
|
|
/**
|
|
* Get the client's identifier.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getIdentifier();
|
|
|
|
/**
|
|
* Set the client's identifier.
|
|
*
|
|
* @param $identifier
|
|
*/
|
|
public function setIdentifier($identifier);
|
|
|
|
/**
|
|
* Get the client's name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName();
|
|
|
|
/**
|
|
* Set the client's name.
|
|
*
|
|
* @param string $name
|
|
*/
|
|
public function setName($name);
|
|
|
|
/**
|
|
* Set the client's redirect uri.
|
|
*
|
|
* @param string $redirectUri
|
|
*/
|
|
public function setRedirectUri($redirectUri);
|
|
|
|
/**
|
|
* Returns the registered redirect URI.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRedirectUri();
|
|
}
|