Class DefaultGigyaService

java.lang.Object
de.hybris.platform.gigya.gigyaservices.service.impl.DefaultGigyaService
All Implemented Interfaces:
GigyaService

public class DefaultGigyaService extends Object implements GigyaService
Default implementation of GigyaService
  • Constructor Details

    • DefaultGigyaService

      public DefaultGigyaService()
  • Method Details

    • callRawGigyaApiWithConfig

      public com.gigya.socialize.GSResponse callRawGigyaApiWithConfig(String method, Map<String,Object> params, GigyaConfigModel conf, int maxTries, int tryNum)
      Description copied from interface: GigyaService
      Method to call raw gigya API with the provided gigya configuration
      Specified by:
      callRawGigyaApiWithConfig in interface GigyaService
      Parameters:
      method - The method name of gigya
      params - The various params
      conf - The gigya config model
      maxTries - The number of trys
      tryNum - The current try number
      Returns:
      GSResponse The GS response
    • callRawGigyaApiWithConfigAndObject

      public com.gigya.socialize.GSResponse callRawGigyaApiWithConfigAndObject(String method, com.gigya.socialize.GSObject gigyaParams, GigyaConfigModel gigyaConfig, int maxTries, int tryNum)
      Description copied from interface: GigyaService
      Method to call gigya API with the configuration and gigya object
      Specified by:
      callRawGigyaApiWithConfigAndObject in interface GigyaService
      Parameters:
      method - The method name
      gigyaParams - The gigya object
      gigyaConfig - The gigya configuration model
      maxTries - The number of trys
      tryNum - The current try number
      Returns:
      GSResponse The gigya response
    • setUserService

      public void setUserService(de.hybris.platform.servicelayer.user.UserService userService)