PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
payments
/
paypal-sdk-core
/
lib
/
auth
<?php /** * Interface that represents API credentials. */ abstract class IPPCredential { /** * @var IPPThirdPartyAuthorization */ protected $thirdPartyAuthorization; public function setThirdPartyAuthorization($thirdPartyAuthorization) { $this->thirdPartyAuthorization = $thirdPartyAuthorization; } public function getThirdPartyAuthorization() { return $this->thirdPartyAuthorization; } abstract public function validate(); }
[+]
..
[-] IPPCredential.php
[edit]
[-] PPSubjectAuthorization.php
[edit]
[-] PPTokenAuthorization.php
[edit]
[-] AuthUtil.php
[edit]
[-] PPCertificateCredential.php
[edit]
[-] PPAuth.php
[edit]
[-] PPSignatureCredential.php
[edit]
[+]
openid
[-] IPPThirdPartyAuthorization.php
[edit]