rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

ClientConfigInterface.php (1538B)


      1 <?php
      2 
      3 /**
      4  *  This program is free software: you can redistribute it and/or modify
      5  *  it under the terms of the GNU Lesser General Public License as published by
      6  *  the Free Software Foundation, either version 3 of the License, or
      7  *  (at your option) any later version.
      8  *
      9  *  This program is distributed in the hope that it will be useful,
     10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     12  *  GNU Lesser General Public License for more details.
     13  *
     14  *  You should have received a copy of the GNU Lesser General Public License
     15  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
     16  */
     17 
     18 namespace fkooman\OAuth\Client;
     19 
     20 interface ClientConfigInterface
     21 {
     22     public function setClientId($clientId);
     23     public function getClientId();
     24     public function setClientSecret($clientSecret);
     25     public function getClientSecret();
     26     public function setAuthorizeEndpoint($authorizeEndpoint);
     27     public function getAuthorizeEndpoint();
     28     public function setTokenEndpoint($tokenEndpoint);
     29     public function getTokenEndpoint();
     30     public function setRedirectUri($redirectUri);
     31     public function getRedirectUri();
     32     public function setCredentialsInRequestBody($credentialsInRequestBody);
     33     public function getCredentialsInRequestBody();
     34     public function setDefaultTokenType($defaultTokenType);
     35     public function getDefaultTokenType();
     36     public function setEnableDebug($enableDebug);
     37     public function getEnableDebug();
     38 }