Interface GigyaService
- All Known Implementing Classes:
DefaultGigyaService
public interface GigyaService
Service to call gigya api's using gigya's java classes
-
Method Summary
Modifier and TypeMethodDescriptioncom.gigya.socialize.GSResponsecallRawGigyaApiWithConfig(String method, Map<String, Object> params, GigyaConfigModel gigyaConfigModel, int trys, int tryNum) Method to call raw gigya API with the provided gigya configurationcom.gigya.socialize.GSResponsecallRawGigyaApiWithConfigAndObject(String method, com.gigya.socialize.GSObject gsObject, GigyaConfigModel gigyaConfigModel, int trys, int tryNum) Method to call gigya API with the configuration and gigya object
-
Method Details
-
callRawGigyaApiWithConfig
com.gigya.socialize.GSResponse callRawGigyaApiWithConfig(String method, Map<String, Object> params, GigyaConfigModel gigyaConfigModel, int trys, int tryNum) Method to call raw gigya API with the provided gigya configuration- Parameters:
method- The method name of gigyaparams- The various paramsgigyaConfigModel- The gigya config modeltrys- The number of trystryNum- The current try number- Returns:
- GSResponse The GS response
-
callRawGigyaApiWithConfigAndObject
com.gigya.socialize.GSResponse callRawGigyaApiWithConfigAndObject(String method, com.gigya.socialize.GSObject gsObject, GigyaConfigModel gigyaConfigModel, int trys, int tryNum) Method to call gigya API with the configuration and gigya object- Parameters:
method- The method namegsObject- The gigya objectgigyaConfigModel- The gigya configuration modeltrys- The number of trystryNum- The current try number- Returns:
- GSResponse The gigya response
-