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

com.voxeo.tropo.actions.NestedOnAction Maven / Gradle / Ivy

package com.voxeo.tropo.actions;

import static com.voxeo.tropo.Key.VALUE;
import support.ActionSupportHandler;

import com.voxeo.tropo.Key;
import com.voxeo.tropo.annotations.ValidKeys;

@ValidKeys(keys={"next","value","event","name","required"})
public class NestedOnAction extends ArrayAction {

	private ActionSupportHandler sayActionSupportHandler = new ActionSupportHandler(SayAction.class);	

	public NestedOnAction() {
		
		super();
		setName("on");
	}
	
	public NestedOnAction(Key... keys) {
	
		super(keys);
		setName("on");
	}	
	
	public SayAction say(String text) {

		return say(VALUE(text));
	}
	
	public SayAction say(Key... keys) {

		return sayActionSupportHandler.build(this, keys);
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy