Searched refs:AdHocCommand (Results 1 - 6 of 6) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/provider/
H A DAdHocCommandDataProvider.java29 import org.jivesoftware.smackx.commands.AdHocCommand;
30 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
56 if (AdHocCommand.Status.executing.toString().equalsIgnoreCase(status)) {
57 adHocCommandData.setStatus(AdHocCommand.Status.executing);
59 else if (AdHocCommand.Status.completed.toString().equalsIgnoreCase(status)) {
60 adHocCommandData.setStatus(AdHocCommand.Status.completed);
62 else if (AdHocCommand.Status.canceled.toString().equalsIgnoreCase(status)) {
63 adHocCommandData.setStatus(AdHocCommand.Status.canceled);
69 Action realAction = AdHocCommand.Action.valueOf(action);
85 adHocCommandData.setExecuteAction(AdHocCommand
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DAdHocCommandData.java25 import org.jivesoftware.smackx.commands.AdHocCommand;
26 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
27 import org.jivesoftware.smackx.commands.AdHocCommand.SpecificErrorCondition;
57 private AdHocCommand.Action action;
60 private AdHocCommand.Status status;
62 private ArrayList<AdHocCommand.Action> actions = new ArrayList<AdHocCommand.Action>();
64 private AdHocCommand.Action executeAction;
106 for (AdHocCommand.Action action : actions) {
206 public AdHocCommand
[all...]
/external/smack/src/org/jivesoftware/smackx/commands/
H A DLocalCommand.java43 public abstract class LocalCommand extends AdHocCommand {
H A DAdHocCommand.java71 public abstract class AdHocCommand { class
80 public AdHocCommand() { method in class:AdHocCommand
H A DAdHocCommandManager.java34 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
35 import org.jivesoftware.smackx.commands.AdHocCommand.Status;
426 AdHocCommand.SpecificErrorCondition.malformedAction);
433 AdHocCommand.SpecificErrorCondition.badAction);
525 AdHocCommand.SpecificErrorCondition.badSessionid);
537 AdHocCommand.SpecificErrorCondition.sessionExpired);
552 AdHocCommand.SpecificErrorCondition.malformedAction);
566 AdHocCommand.SpecificErrorCondition.badAction);
655 AdHocCommand.SpecificErrorCondition specificCondition)
H A DRemoteCommand.java35 * {@link AdHocCommand.Action#execute execute}, {@link AdHocCommand.Action#next next},
36 * {@link AdHocCommand.Action#prev prev}, {@link AdHocCommand.Action#cancel cancel} or
37 * {@link AdHocCommand.Action#complete complete} actions results in executing that
47 public class RemoteCommand extends AdHocCommand {

Completed in 102 milliseconds