org.restcomm.connect.interpreter.rcml.domain.GatherAttributes Maven / Gradle / Ivy
The newest version!
/*
* TeleStax, Open Source Cloud Communications
* Copyright 2011-2014, Telestax Inc and individual contributors
* by the @authors tag.
*
* This program is free software: you can redistribute it and/or modify
* under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
*
*/
package org.restcomm.connect.interpreter.rcml.domain;
/**
* Library class with all Gather attributes names.
*
* @author Dmitriy Nadolenko
*/
public class GatherAttributes {
public static final String ATTRIBUTE_INPUT = "input";
public static final String ATTRIBUTE_ACTION = "action";
public static final String ATTRIBUTE_METHOD = "method";
public static final String ATTRIBUTE_FINISH_ON_KEY = "finishOnKey";
public static final String ATTRIBUTE_NUM_DIGITS = "numDigits";
public static final String ATTRIBUTE_TIME_OUT = "timeout";
public static final String ATTRIBUTE_PARTIAL_RESULT_CALLBACK = "partialResultCallback";
public static final String ATTRIBUTE_PARTIAL_RESULT_CALLBACK_METHOD = "partialResultCallbackMethod";
public static final String ATTRIBUTE_LANGUAGE = "language";
public static final String ATTRIBUTE_HINTS = "hints";
}