Package 

Class DeepLinkAction

  • All Implemented Interfaces:
    com.appstock.sdk.rendering.utils.url.action.UrlAction

    
    public class DeepLinkAction
     implements UrlAction
                        
    • Method Summary

      Modifier and Type Method Description
      boolean shouldOverrideUrlLoading(Uri uri) Determines if the uri can be handled by specific action.NOTE: In order to make all actions work properly - each action should handle unique URIs.
      void performAction(Context context, UrlHandler urlHandler, Uri uri) Executes specific action on the given uri.
      boolean shouldBeTriggeredByUserAction()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • shouldOverrideUrlLoading

         boolean shouldOverrideUrlLoading(Uri uri)

        Determines if the uri can be handled by specific action.NOTE: In order to make all actions work properly - each action should handle unique URIs.

        Parameters:
        uri - which should be handled.
      • performAction

         void performAction(Context context, UrlHandler urlHandler, Uri uri)

        Executes specific action on the given uri.

        Parameters:
        context - activity context.
        urlHandler - holder of action.
        uri - which should be handled.