open class SellerCredentials : Credentials
This credentials doesn't have any authentication info. SellerCredentials
introduces override of getSellerId
. Created by fasth on 27.08.2014.
SellerCredentials(country: String!, corporateId: String!) |
var corporateId: String! |
|
var country: String! |
open fun getCorporateId(): String! |
|
open fun getCountry(): String! |
|
open fun getSellerId(): String!
Returns sellerId. SellerId is concatenate of seller's country and seller's corporate ID. |
|
open fun toAuthentication(): String!
Doesn't have any authentication info. |
open class ActivationCredentials : SellerCredentials
Credentials for ROLE_ACTIVATION. Adds fields |
|
open class TreasurerCredentials : SellerCredentials
Credentials for ROLE_REGULAR_USER. Created by fasth on 27.08.2014. |