All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imiconnect.connect.voice.callback.action.Action Maven / Gradle / Ivy

The newest version!
package com.imiconnect.connect.voice.callback.action;

/** Defines a type of action that is used as a reply to a callback event. */
public interface Action {

  public enum Type {
    ANSWER,
    HANGUP,
    PATCH,
    PLAY,
    RECORD
  }

  /**
   * Gets the name of the action.
   *
   * @return The name of the action.
   */
  public Type getAction();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy