PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
payments
/
paypal-sdk-core
/
lib
/
auth
<?php /** * Represents the older subject based "third party authorization" * New apps can use the more flexible token based authorization. */ class PPSubjectAuthorization implements IPPThirdPartyAuthorization { /** * Paypal emailid of the party who has granted API rights * to the API caller. Your API username must have been * granted permission by this third-party to make any particular * PayPal API request. * * @var string */ private $subject; public function __construct($subject) { $this->subject = $subject; } public function getSubject() { return $this->subject; } }
[+]
..
[-] 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]