Interface GigyaService
-
- All Known Implementing Classes:
DefaultGigyaService
public interface GigyaServiceService to call gigya api's using gigya's java classes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.gigya.socialize.GSResponsecallRawGigyaApiWithConfig(java.lang.String method, java.util.Map<java.lang.String,java.lang.Object> params, GigyaConfigModel gigyaConfigModel, int trys, int tryNum)Method to call raw gigya API with the provided gigya configurationcom.gigya.socialize.GSResponsecallRawGigyaApiWithConfigAndObject(java.lang.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 Detail
-
callRawGigyaApiWithConfig
com.gigya.socialize.GSResponse callRawGigyaApiWithConfig(java.lang.String method, java.util.Map<java.lang.String,java.lang.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(java.lang.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
-
-