public abstract class

BaseTagsAction

extends Action
java.lang.Object
   ↳ com.urbanairship.actions.Action
     ↳ com.urbanairship.actions.tags.BaseTagsAction
Known Direct Subclasses

Class Overview

Abstract tag action class.

Summary

Public Constructors
BaseTagsAction()
Public Methods
boolean acceptsArguments(ActionArguments arguments)
Called before an action is performed to determine if the the action can accept the arguments.
Protected Methods
PushManager getPushManager()
Gets the push manager
Set<String> getTags(ActionArguments arguments)
Parses the arguments for a set of tags
[Expand]
Inherited Methods
From class com.urbanairship.actions.Action
From class java.lang.Object

Public Constructors

public BaseTagsAction ()

Public Methods

public boolean acceptsArguments (ActionArguments arguments)

Called before an action is performed to determine if the the action can accept the arguments.

Parameters
arguments The action arguments.
Returns
  • true if the action can perform with the arguments, otherwise false.

Protected Methods

protected PushManager getPushManager ()

Gets the push manager

Returns
  • A push manager instance

protected Set<String> getTags (ActionArguments arguments)

Parses the arguments for a set of tags

Parameters
arguments The action arguments
Returns
  • A set of tags from the arguments, or null if no tags could be parsed from the arguments